summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-19 13:56:28 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-19 13:56:28 +0000
commit32145b065247829d30ddad2616f796625ca37d9c (patch)
treec7a45c2deeefe8875982c022d162e6a5d7164bb0
parent98ecd65d9a9a6fec29fbd3db9a26cc62259182bf (diff)
* numeric.c (DBL_EPSILON): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3174 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--numeric.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 059f771d9f..8b5b12cc4b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 19 22:55:49 2002 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * numeric.c (DBL_EPSILON): fix typo.
+
Thu Dec 19 22:35:20 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* eval.c (assign): avoid [BUG] at multiple attribute assignment.
diff --git a/numeric.c b/numeric.c
index 0da0e64279..0e2116460e 100644
--- a/numeric.c
+++ b/numeric.c
@@ -23,7 +23,7 @@
#endif
#ifndef DBL_EPSILON
-#define 2.2204460492503131E-16
+#define DBL_EPSILON 2.2204460492503131E-16
#endif
static ID id_coerce, id_to_i, id_div;