summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-27 07:50:04 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-27 07:50:04 +0000
commit2f35c3faf88dfed13ce17c71e397d2c768751e33 (patch)
treede6ef20ed8deee8cb4ae8a2603d3d07fecc45d1d /ChangeLog
parentd212e416129760e4c8ad2a27121d0d0c4bf666ad (diff)
downloadruby-2f35c3faf88dfed13ce17c71e397d2c768751e33.tar.gz
ruby-2f35c3faf88dfed13ce17c71e397d2c768751e33.tar.xz
ruby-2f35c3faf88dfed13ce17c71e397d2c768751e33.zip
* marshal.c (w_class): should not dump singleton class.
[ruby-dev:22631] * marshal.c (class2path): check anonymous class/module before checking referable, and allow singleton classes. * marshal.c (class2path): get class path and check referable. [ruby-dev:22588] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e5efdaaef..5aef7a4ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1489,6 +1489,11 @@ Tue Jan 20 02:49:22 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/extconf.rb: add check for OpenSSL version.
[ruby-list:39054]
+Tue Jan 20 02:38:13 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * marshal.c (w_class): should not dump singleton class.
+ [ruby-dev:22631]
+
Tue Jan 20 01:31:36 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* io.c (lineno): typo fix(FIX2INT -> INT2FIX).
@@ -1515,6 +1520,16 @@ Sun Jan 18 02:33:26 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* defines.h (_WIN32): undef _WIN32 on Cygwin before defining DOSISH.
+Sun Jan 18 00:23:55 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * marshal.c (class2path): check anonymous class/module before
+ checking referable, and allow singleton classes.
+
+Fri Jan 16 14:33:35 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * marshal.c (class2path): get class path and check referable.
+ [ruby-dev:22588]
+
Fri Jan 16 09:52:23 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (proc_eq): Proc with empty body may not be equal.