diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-06-04 07:34:19 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-06-04 07:34:19 +0000 |
commit | 31230ec3de8249cb2a0d1fb11ae87853b2d2edd4 (patch) | |
tree | a65171fc36999a1cc3c537a0b8bf62ddd9b16f77 /numeric.c | |
parent | 1258af1e28d321ce14e1ba5e342ccc279e081f18 (diff) | |
download | ruby-31230ec3de8249cb2a0d1fb11ae87853b2d2edd4.tar.gz ruby-31230ec3de8249cb2a0d1fb11ae87853b2d2edd4.tar.xz ruby-31230ec3de8249cb2a0d1fb11ae87853b2d2edd4.zip |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@2517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r-- | numeric.c | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -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; |