diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-04-03 05:25:00 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-04-03 05:25:00 +0000 |
| commit | 967a84286504f84256d3a52d3e87373dd51dbdc9 (patch) | |
| tree | b5911b3405aec1bee504fe6ccfa044e9195d90f8 /numeric.c | |
| parent | 4fc53c6b5599fc522b2e5916c342801069b9231d (diff) | |
| download | ruby-967a84286504f84256d3a52d3e87373dd51dbdc9.tar.gz ruby-967a84286504f84256d3a52d3e87373dd51dbdc9.tar.xz ruby-967a84286504f84256d3a52d3e87373dd51dbdc9.zip | |
* eval.c (rb_f_missing): use "inspect" for T_OBJECT as well.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
| -rw-r--r-- | numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1721,8 +1721,8 @@ Init_Numeric() rb_cNumeric = rb_define_class("Numeric", rb_cObject); rb_include_module(rb_cNumeric, rb_mComparable); - rb_define_method(rb_cNumeric, "coerce", num_coerce, 1); rb_define_method(rb_cNumeric, "copy_object", num_copy_object, 1); + rb_define_method(rb_cNumeric, "coerce", num_coerce, 1); rb_define_method(rb_cNumeric, "+@", num_uplus, 0); rb_define_method(rb_cNumeric, "-@", num_uminus, 0); |
