summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-08 06:43:53 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-08 06:43:53 +0000
commit7c653f111f73412182f7e23ae1dca7371888de8a (patch)
treef2533524bf341310ce9c8ed7a986ff6eaeb75ceb
parent2e1f0afa0eb329222eaf05b79c0abd2192098f43 (diff)
no message
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog27
1 files changed, 13 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ce6cfa0dd..6fb832dfc0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -718,7 +718,7 @@ Wed Jun 23 22:23:37 2004 Dave Thomas <dave@pragprog.com>
Thu Jun 24 01:07:15 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_thread_atfork): remove "fork terminates thread"
- warning. [ruby-dev:
+ warning. [ruby-dev:23768]
* object.c (rb_obj_clone): backport FL_FINALIZE patch from 1.9.
[ruby-core:02786][ruby-core:03067]
@@ -783,7 +783,7 @@ Wed Jun 16 16:04:40 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
Wed Jun 16 16:01:17 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
- * gc.c (stack_grow_direction): memoize the direction.
+ * gc.c (stack_grow_direction): memorize the direction.
* gc.c (Init_stack): should always move to end of VALUE.
@@ -1045,14 +1045,13 @@ Tue May 18 14:00:46 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
Mon May 17 16:14:25 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
- * numeric.c (flo_to_s): p 0.0 should be '0.0' not '0.0e+00'.
+ * numeric.c (flo_to_s): as a result of "p 0.0", "0.0" is prefered
+ to "0.0e+00". [ruby-dev:23480]
- * numeric.c (flo_to_s): the number of significand is correctly handled,
- there is assumption that DBL_DIG == 15 though.
- (p 0.00000000000000000001 was '9.999999999999999e-21', now is
- '1.0e-20')
-
- [ruby-dev:23480]
+ * numeric.c (flo_to_s): as a result of "p 0.00000000000000000001",
+ "1.0e-20" is prefered to "9.999999999999999e-21". (the precision
+ is considered, but there is assumption DBL_DIG == 15 in current
+ implementation)
Mon May 17 10:13:33 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
@@ -2046,14 +2045,14 @@ Tue Feb 17 01:35:28 2004 Tanaka Akira <akr@m17n.org>
* eval.c (rb_eval): care that another thread replace NODE_DREGX_ONCE
to NODE_LIT. [ruby-dev:22920]
-Tue Feb 17 01:24:35 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
+Tue Feb 17 01:24:35 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
- * bcc32/Makefile.sub: backport from 1.9 - configure. (Thanks Nakada)
- [ruby-dev:22910]
+ * bcc32/Makefile.sub, win32/Makefile.sub (config.h): define
+ STACK_GROW_DIRECTION. [ruby-dev:22910]
- * win32/Makefile.sub: ditto.
+ * bcc32/Makefile.sub (config.h): add newer checks.
- * wince/Makefile.sub: ditto.
+ * wince/Makefile.sub (config.h): define NEED_IO_SEEK_BETWEEN_RW.
Tue Feb 17 00:38:10 2004 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>