summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-24 13:43:58 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-24 13:43:58 +0000
commit45e4c244b4a1c63faf6e3683472da52db7e6c2e2 (patch)
treec80cf50403da9548962e7cfbd8a55cfda3176d8f /ChangeLog
parent8f41867954b4a1ed7b4930f80fde583cce057bea (diff)
downloadruby-45e4c244b4a1c63faf6e3683472da52db7e6c2e2.tar.gz
ruby-45e4c244b4a1c63faf6e3683472da52db7e6c2e2.tar.xz
ruby-45e4c244b4a1c63faf6e3683472da52db7e6c2e2.zip
* array.c (rb_ary_equal): should handle recursive array.
* hash.c (hash_equal): should handle recursive hash. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13509 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 994c8b362..605d58021 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Sep 24 22:36:13 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * array.c (rb_ary_equal): should handle recursive array.
+
+ * hash.c (hash_equal): should handle recursive hash.
+
Mon Sep 24 22:14:13 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/weakref.rb (WeakRef): remove debug print. [ruby-dev:31799]