summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-21 03:52:27 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-21 03:52:27 +0000
commitb3686317a774249c4ff4b7514cba880c9adbd9ca (patch)
treeb98e9e8c849f34223719ffbd953f613e5151b12b /string.c
parent8fc299e8bc5a8c0347597da6b271f21db8f5f3cc (diff)
* string.c (rb_str_cmp_m): two small bugs fixed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3521 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/string.c b/string.c
index 7a21e5c8eb..acdfe40434 100644
--- a/string.c
+++ b/string.c
@@ -816,10 +816,11 @@ rb_str_cmp_m(str1, str2)
else {
VALUE tmp = rb_funcall(str2, rb_intern("<=>"), 1, str1);
+ if (NIL_P(tmp)) return Qnil;
if (!FIXNUM_P(tmp)) {
- return rb_funcall(LONG2FIX(0), '-', tmp);
+ return rb_funcall(LONG2FIX(0), '-', 1, tmp);
}
- result = FIX2LONG(tmp);
+ result = -FIX2LONG(tmp);
}
}
else {