aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-30 05:26:59 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-30 05:26:59 +0000
commitefedaa432b4c6847df4667598d31a60aae7b4615 (patch)
treedbd708823afd62c504a0b0b50898f3cfacf7d799
parent058ec52c0db102a44de7fe09564c1ef0c5a0e1b5 (diff)
downloadruby-efedaa432b4c6847df4667598d31a60aae7b4615.tar.gz
* hash.c (rb_hash_eql): recursive comparison should be based on
eql? [ruby-core:13803] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14046 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--hash.c2
-rw-r--r--version.h6
3 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 409daa97db..6491708acc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,11 @@ Thu Nov 29 16:59:10 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (stmt): remove unnecessary NODE_BEGIN. [ruby-core:13814]
+Thu Nov 29 06:45:48 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * hash.c (rb_hash_eql): recursive comparison should be based on
+ eql? [ruby-core:13803]
+
Wed Nov 28 18:08:00 2007 NARUSE, Yui <naruse@ruby-lang.org>
* ext/json, lib/json, test/json: Update to JSON 1.1.2.
diff --git a/hash.c b/hash.c
index 385e056248..56b2bef935 100644
--- a/hash.c
+++ b/hash.c
@@ -1436,7 +1436,7 @@ rb_hash_equal(VALUE hash1, VALUE hash2)
static VALUE
rb_hash_eql(VALUE hash1, VALUE hash2)
{
- return hash_equal(hash1, hash2, Qfalse);
+ return hash_equal(hash1, hash2, Qtrue);
}
static int
diff --git a/version.h b/version.h
index cea5b8f13c..7b067f8156 100644
--- a/version.h
+++ b/version.h
@@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.0"
-#define RUBY_RELEASE_DATE "2007-11-29"
+#define RUBY_RELEASE_DATE "2007-11-30"
#define RUBY_VERSION_CODE 190
-#define RUBY_RELEASE_CODE 20071129
+#define RUBY_RELEASE_CODE 20071130
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2007
#define RUBY_RELEASE_MONTH 11
-#define RUBY_RELEASE_DAY 29
+#define RUBY_RELEASE_DAY 30
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];