summaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-05 14:23:38 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-05 14:23:38 +0000
commit25407d57a73b9ff175fa799a681a6933f1a19029 (patch)
treec9b3c0db5ac335aedcbe40bc3f98f7763def8e6d /array.c
parent42864a42ba4633ee2fecefcd9afad9ea24b20dbf (diff)
downloadruby-25407d57a73b9ff175fa799a681a6933f1a19029.tar.gz
ruby-25407d57a73b9ff175fa799a681a6933f1a19029.tar.xz
ruby-25407d57a73b9ff175fa799a681a6933f1a19029.zip
* array.c (sort_2): get rid of yet another bcc's bug.
fixed: [ruby-core:05152] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r--array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/array.c b/array.c
index 8a6f58533..f16e0a663 100644
--- a/array.c
+++ b/array.c
@@ -1584,8 +1584,8 @@ sort_2(ap, bp, data)
if ((long)a < (long)b) return -1;
return 0;
}
- if (TYPE(a) == T_STRING && TYPE(b) == T_STRING) {
- return rb_str_cmp(a, b);
+ if (TYPE(a) == T_STRING) {
+ if (TYPE(b) == T_STRING) return rb_str_cmp(a, b);
}
retval = rb_funcall(a, id_cmp, 1, b);