diff options
author | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-13 02:43:09 +0000 |
---|---|---|
committer | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-13 02:43:09 +0000 |
commit | c851bd00a379d43bb842ce66f7eee2f61d60d2fd (patch) | |
tree | fe58f9217f9de2e356b56828d1b152450b8c7589 | |
parent | ee2884ff3d9d95dc5af840e6962a68891e21b3f9 (diff) |
* object.c (Init_Object): remove Module#used, which has been
introduced in Ruby 2.0 by mistake. [Bug #7916] [ruby-core:52719]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | object.c | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Wed Mar 13 11:11:07 2013 Shugo Maeda <[email protected]> + + * object.c (Init_Object): remove Module#used, which has been + introduced in Ruby 2.0 by mistake. [Bug #7916] [ruby-core:52719] + Wed Mar 13 05:49:29 2013 Eric Hodel <[email protected]> * lib/irb.rb: Fix typo @@ -3030,7 +3030,6 @@ Init_Object(void) rb_define_private_method(rb_cModule, "included", rb_obj_dummy, 1); rb_define_private_method(rb_cModule, "extended", rb_obj_dummy, 1); rb_define_private_method(rb_cModule, "prepended", rb_obj_dummy, 1); - rb_define_private_method(rb_cModule, "used", rb_obj_dummy, 1); rb_define_private_method(rb_cModule, "method_added", rb_obj_dummy, 1); rb_define_private_method(rb_cModule, "method_removed", rb_obj_dummy, 1); rb_define_private_method(rb_cModule, "method_undefined", rb_obj_dummy, 1); |