aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c32
1 files changed, 2 insertions, 30 deletions
diff --git a/eval.c b/eval.c
index a1010d74b8..8a1ff85a00 100644
--- a/eval.c
+++ b/eval.c
@@ -2660,12 +2660,10 @@ rb_f_local_variables(void)
/*
* call-seq:
* __method__ => symbol
+ * __callee__ => symbol
*
* Returns the name of the current method as a Symbol.
- * If called from inside of an aliased method it will return the original
- * nonaliased name.
* If called outside of a method, it returns <code>nil</code>.
- * See also <code>\_\_callee__</code>.
*
*/
@@ -2682,32 +2680,6 @@ rb_f_method_name(void)
}
}
-/*
- * call-seq:
- * __callee__ => symbol
- *
- * Returns the name of the current method as Symbol.
- * If called from inside of an aliased method it will return the aliased
- * name.
- * If called outside of a method, it returns <code>nil</code>.
- * See also <code>\_\_method__</code>.
- *
- */
-
-static VALUE
-rb_f_callee_name(void)
-{
- /* xxx need to get callee name */
- ID callee = rb_frame_callee();
-
- if (callee) {
- return ID2SYM(callee);
- }
- else {
- return Qnil;
- }
-}
-
void
Init_eval(void)
{
@@ -2756,7 +2728,7 @@ Init_eval(void)
rb_define_global_function("local_variables", rb_f_local_variables, 0);
rb_define_global_function("__method__", rb_f_method_name, 0);
- rb_define_global_function("__callee__", rb_f_callee_name, 0);
+ rb_define_global_function("__callee__", rb_f_method_name, 0);
rb_define_method(rb_cBasicObject, "__send__", rb_f_send, -1);
rb_define_method(rb_mKernel, "send", rb_f_send, -1);