From 5438b12bc50adf9958bba6ea9de01503dc588af2 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 13 Nov 2001 08:19:52 +0000 Subject: * signal.c (sighandle): should not re-register sighandler if POSIX_SIGNAL is defined. * eval.c (error_print): errat array may be empty. * eval.c (rb_eval_cmd): should not upgrade safe level unless explicitly specified by argument newly added. * signal.c (sig_trap): should not allow tainted trap closure. * variable.c (rb_f_trace_var): should not allow trace_var on safe level higher than 3. * variable.c (rb_f_trace_var): should not allow tainted trace closure. * gc.c: do not use static stack until system stack overflows. * eval.c (eval): should call Exception#exception instead of calling rb_exc_new3() directly. * error.c (exc_exception): set "mesg" directly to the clone. it might be better to set mesg via some method for flexibility. * variable.c (cvar_override_check): should print original module name, if 'a' is T_ICLASS. * parse.y (yylex): float '1_.0' should not be allowed. * variable.c (var_getter): should care about var as Qfalse (ruby-bugs#PR199). * array.c (cmpint): <=> or block for {min,max} may return bignum. * array.c (sort_1): use rb_compint. * array.c (sort_2): ditto. * enum.c (min_ii): ditto. * enum.c (min_ii): ditto. * enum.c (max_i): ditto. * enum.c (max_ii): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1827 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enum.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'enum.c') diff --git a/enum.c b/enum.c index dfa846c05..af0164522 100644 --- a/enum.c +++ b/enum.c @@ -89,7 +89,7 @@ enum_find(argc, argv, obj) } rb_gc_force_recycle((VALUE)memo); if (!NIL_P(if_none)) { - rb_eval_cmd(if_none, rb_ary_new2(0)); + rb_eval_cmd(if_none, rb_ary_new2(0), 0); } return Qnil; } @@ -299,7 +299,7 @@ min_i(i, memo) memo->u1.value = i; else { cmp = rb_funcall(i, id_cmp, 1, memo->u1.value); - if (NUM2LONG(cmp) < 0) + if (rb_cmpint(cmp) < 0) memo->u1.value = i; } return Qnil; @@ -316,7 +316,7 @@ min_ii(i, memo) memo->u1.value = i; else { cmp = rb_yield(rb_assoc_new(i, memo->u1.value)); - if (NUM2LONG(cmp) < 0) + if (rb_cmpint(cmp) < 0) memo->u1.value = i; } return Qnil; @@ -344,7 +344,7 @@ max_i(i, memo) memo->u1.value = i; else { cmp = rb_funcall(i, id_cmp, 1, memo->u1.value); - if (NUM2LONG(cmp) > 0) + if (rb_cmpint(cmp) > 0) memo->u1.value = i; } return Qnil; @@ -361,7 +361,7 @@ max_ii(i, memo) memo->u1.value = i; else { cmp = rb_yield(rb_assoc_new(i, memo->u1.value)); - if (NUM2LONG(cmp) > 0) + if (rb_cmpint(cmp) > 0) memo->u1.value = i; } return Qnil; -- cgit