From c332266ee0d026340e369c9b67d01837ba2ed2e4 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 24 Dec 2007 09:07:20 +0000 Subject: * eval_method.c (Init_eval_method): extracted from Init_eval for rdoc to find rb_mod_remove_method, rb_mod_undef_method and rb_mod_alias_method. * eval.c (Init_eval): call Init_eval_method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval_method.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'eval_method.c') diff --git a/eval_method.c b/eval_method.c index 94b39f04b1..34a65b7fa0 100644 --- a/eval_method.c +++ b/eval_method.c @@ -639,3 +639,11 @@ rb_mod_alias_method(VALUE mod, VALUE newname, VALUE oldname) rb_alias(mod, rb_to_id(newname), rb_to_id(oldname)); return mod; } + +static void +Init_eval_method(void) +{ + rb_define_private_method(rb_cModule, "remove_method", rb_mod_remove_method, -1); + rb_define_private_method(rb_cModule, "undef_method", rb_mod_undef_method, -1); + rb_define_private_method(rb_cModule, "alias_method", rb_mod_alias_method, 2); +} -- cgit v1.2.3