summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-12 03:17:43 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-12 03:17:43 +0000
commit38694016bc226abd074c239282dc047ad7c65c55 (patch)
treef261aefbaa3b0909e36946925be65178e0921612 /parse.y
parentff15c72d694a8bb9d5ad40d14dc5d8f1fee419e0 (diff)
* string.c (rb_str_hash_cmp): lighter version of rb_str_cmp() for
hash comparison function. * hash.c (rb_any_cmp): use rb_str_hash_cmp(). * string.c (rb_str_casecmp): should return nil for incompatible comparison. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 8ca7c86270..51e9136c60 100644
--- a/parse.y
+++ b/parse.y
@@ -8749,7 +8749,7 @@ static struct symbols {
} global_symbols = {tLAST_TOKEN >> ID_SCOPE_SHIFT};
static const struct st_hash_type symhash = {
- rb_str_cmp,
+ rb_str_hash_cmp,
rb_str_hash,
};