summaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-03 08:45:26 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-03 08:45:26 +0000
commitaa1ea534ced1699c4bc7f91a6ba8b11338152b28 (patch)
tree99b881e01316af946a2dfa978b0067aae9675f6b /numeric.c
parentb19669233e192a530892b6aca4642820ff8169d2 (diff)
downloadruby-aa1ea534ced1699c4bc7f91a6ba8b11338152b28.tar.gz
ruby-aa1ea534ced1699c4bc7f91a6ba8b11338152b28.tar.xz
ruby-aa1ea534ced1699c4bc7f91a6ba8b11338152b28.zip
* object.c (Init_Object): default Object#=== now calls "=="
internally. * re.c (rb_reg_initialize_m): should honor option status of original regexp. * array.c (rb_ary_equal): ary2 should be T_ARRAY (no to_ary conversion). * array.c (rb_ary_eql): ditto. * string.c (rb_str_equal): str2 should be T_STRING (no to_str conversion). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3435 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index 57aeadc7a..646f9ba57 100644
--- a/numeric.c
+++ b/numeric.c
@@ -1723,7 +1723,6 @@ Init_Numeric()
rb_define_method(rb_cNumeric, "+@", num_uplus, 0);
rb_define_method(rb_cNumeric, "-@", num_uminus, 0);
- rb_define_method(rb_cNumeric, "===", num_equal, 1);
rb_define_method(rb_cNumeric, "<=>", num_cmp, 1);
rb_define_method(rb_cNumeric, "eql?", num_eql, 1);
rb_define_method(rb_cNumeric, "quo", num_quo, 1);