ruby-changes:2555
From: ko1@a...
Date: 30 Nov 2007 14:27:58 +0900
Subject: [ruby-changes:2555] matz - Ruby:r14046 (trunk): * hash.c (rb_hash_eql): recursive comparison should be based on
matz 2007-11-30 14:26:59 +0900 (Fri, 30 Nov 2007)
New Revision: 14046
Modified files:
trunk/ChangeLog
trunk/hash.c
trunk/version.h
Log:
* hash.c (rb_hash_eql): recursive comparison should be based on
eql? [ruby-core:13803]
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/version.h?r1=14046&r2=14045
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/hash.c?r1=14046&r2=14045
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=14046&r2=14045
Index: ChangeLog
===================================================================
--- ChangeLog (revision 14045)
+++ ChangeLog (revision 14046)
@@ -2,6 +2,11 @@
* parse.y (stmt): remove unnecessary NODE_BEGIN. [ruby-core:13814]
+Thu Nov 29 06:45:48 2007 Yukihiro Matsumoto <matz@r...>
+
+ * 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@r...>
* ext/json, lib/json, test/json: Update to JSON 1.1.2.
Index: hash.c
===================================================================
--- hash.c (revision 14045)
+++ hash.c (revision 14046)
@@ -1436,7 +1436,7 @@
static VALUE
rb_hash_eql(VALUE hash1, VALUE hash2)
{
- return hash_equal(hash1, hash2, Qfalse);
+ return hash_equal(hash1, hash2, Qtrue);
}
static int
Index: version.h
===================================================================
--- version.h (revision 14045)
+++ version.h (revision 14046)
@@ -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[];
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml