summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-04 08:24:09 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-04 08:24:09 +0000
commit764c6a285e26ba7261cb9c39d4263d2be081e481 (patch)
tree06e76fe12d3cb73bd19801705186900b524d8268 /hash.c
parentdb1571b1b466d20f6a17c85ab062ad37eddb588c (diff)
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 0d65dc9d43..3ff58cc41c 100644
--- a/hash.c
+++ b/hash.c
@@ -613,7 +613,9 @@ static VALUE
rb_hash_sort(hash)
VALUE hash;
{
- return rb_ary_sort_bang(rb_hash_to_a(hash));
+ VALUE entries = rb_hash_to_a(hash);
+ rb_ary_sort_bang(entries);
+ return entries;
}
static int