From efedaa432b4c6847df4667598d31a60aae7b4615 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 30 Nov 2007 05:26:59 +0000 Subject: * 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 --- hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hash.c') 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 -- cgit v1.2.3