summaryrefslogtreecommitdiffstats
path: root/range.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-01-07 05:27:01 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-01-07 05:27:01 +0000
commit643286909b266e602eb213e1f278d8923ecbd445 (patch)
treef078d8b669b793ff8665e26d445cb50dabec75e0 /range.c
parent0334509cdaa6da69d67d188143382b60ba166e10 (diff)
downloadruby-643286909b266e602eb213e1f278d8923ecbd445.tar.gz
ruby-643286909b266e602eb213e1f278d8923ecbd445.tar.xz
ruby-643286909b266e602eb213e1f278d8923ecbd445.zip
* string.c (rb_str_new2): NULL pointer check added.
* class.c (rb_define_module_under): should locate predefined module using rb_const_defined_at(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'range.c')
-rw-r--r--range.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/range.c b/range.c
index b18951dcb..cd1413811 100644
--- a/range.c
+++ b/range.c
@@ -106,7 +106,7 @@ range_eq(range, obj)
}
static int
-r_eq(a,b)
+r_eq(a, b)
VALUE a, b;
{
VALUE r;
@@ -119,22 +119,22 @@ r_eq(a,b)
}
static int
-r_lt(a,b)
+r_lt(a, b)
VALUE a, b;
{
VALUE r = rb_funcall(a, id_cmp, 1, b);
- if (NUM2LONG(r) < 0) return Qtrue;
+ if (rb_cmpint(r) < 0) return Qtrue;
return Qfalse;
}
static int
-r_le(a,b)
+r_le(a, b)
VALUE a, b;
{
VALUE r = rb_funcall(a, id_cmp, 1, b);
- if (NUM2LONG(r) <= 0) return Qtrue;
+ if (rb_cmpint(r) <= 0) return Qtrue;
return Qfalse;
}
@@ -144,7 +144,7 @@ r_gt(a,b)
{
VALUE r = rb_funcall(a, id_cmp, 1, b);
- if (NUM2LONG(r) > 0) return Qtrue;
+ if (rb_cmpint(r) > 0) return Qtrue;
return Qfalse;
}
OSZAR »