From b7bc0cae539617af4dfac5b44b0ebd700efe2084 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 4 Jun 2002 07:34:19 +0000 Subject: * string.c (rb_str_aset): should raise error if an indexing string is not found in the receiver. * sprintf.c (rb_f_sprintf): "%d" should convert objects into integers using Integer(). * lib/tempfile.rb (Tempfile::size): added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'numeric.c') diff --git a/numeric.c b/numeric.c index 2b9d6f5767..accd581133 100644 --- a/numeric.c +++ b/numeric.c @@ -640,7 +640,8 @@ flo_zero_p(num) return Qfalse; } -static VALUE flo_is_nan_p(num) +static VALUE +flo_is_nan_p(num) VALUE num; { @@ -649,19 +650,21 @@ static VALUE flo_is_nan_p(num) return isnan(value) ? Qtrue : Qfalse; } -static VALUE flo_is_infinite_p(num) +static VALUE +flo_is_infinite_p(num) VALUE num; { double value = RFLOAT(num)->value; if (isinf(value)) { - return INT2FIX( value < 0 ? -1 : +1 ); + return INT2FIX( value < 0 ? -1 : 1 ); } return Qnil; } -static VALUE flo_is_finite_p(num) +static VALUE +flo_is_finite_p(num) VALUE num; { double value = RFLOAT(num)->value; -- cgit v1.2.3