summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-09 02:34:02 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-09 02:34:02 +0000
commit9e9038427dd572edd8bde28cf925cc027b71f64d (patch)
tree66751ab543cb986a6ea221eddb38626b66e26275
parent998ba551ae299087865e78f7f72f94fe8b7e08e8 (diff)
no message
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6749 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog21
1 files changed, 11 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index e9fd6cb34c..317e6c468f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -735,7 +735,7 @@ Wed Jun 23 01:45:27 2004 Dave Thomas <dave@pragprog.com>
Wed Jun 23 00:20:20 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* ext/win32ole/win32ole.c (ole_hresult2msg): remove trailing
- CR and LF. (doesn't depend on CR+LF) [ruby-dev:23694]
+ CRs and LFs. (doesn't depend on CR+LF) [ruby-dev:23749]
Wed Jun 23 00:00:25 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
@@ -1045,11 +1045,11 @@ 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): as a result of "p 0.0", "0.0" is prefered
- to "0.0e+00". [ruby-dev:23480]
+ * numeric.c (flo_to_s): it's preferable that "p 0.0" outputs "0.0"
+ instead of "0.0e+00". [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
+ * numeric.c (flo_to_s): it's preferable that "p 0.00000000000000000001"
+ outputs "1.0e-20" instead of "9.999999999999999e-21". (the precision
is considered, but there is assumption DBL_DIG == 15 in current
implementation)
@@ -1477,8 +1477,7 @@ Mon Apr 12 18:52:32 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
Mon Apr 12 10:43:47 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* dir.c (rb_glob2, rb_glob, rb_globi, push_globs, push_braces,
- rb_push_glob):
- fix memory leak to occur when block is interrupted in Dir.glob.
+ rb_push_glob): fix memory leak. (leaked when block was interrupted)
Mon Apr 12 10:27:37 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
@@ -2170,9 +2169,11 @@ Mon Feb 9 17:16:00 2004 WATANABE Hirofumi <eban@ruby-lang.org>
Mon Feb 9 13:00:55 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
- * dir.c (fnmatch):
- File.fnmatch('*?', 'a') should return true. [ruby-dev:22815]
- File.fnmatch('\[1\]' , '[1]') should return true. [ruby-dev:22819]
+ * dir.c (fnmatch): File.fnmatch('*?', 'a') should return true.
+ [ruby-dev:22815]
+
+ * dir.c (fnmatch): File.fnmatch('\[1\]' , '[1]') should return true.
+ [ruby-dev:22819]
Sun Feb 8 16:46:13 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>