diff --git a/ChangeLog b/ChangeLog index 40e135e5cd..b059c5cc33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 29 07:22:05 2005 Nobuyoshi Nakada + + * evalc. (rb_f_send): underscores need to be escaped. + fixed by Doug Kearns. [ruby-core:06053] + Thu Sep 29 00:57:35 2005 Nobuyoshi Nakada * eval.c (ev_const_get), variable.c (rb_const_get_0): retry only when diff --git a/eval.c b/eval.c index 06a1fa1e5a..4b5e0eb696 100644 --- a/eval.c +++ b/eval.c @@ -5846,7 +5846,7 @@ send_fcall(int argc, VALUE *argv, VALUE recv, int scope) * obj.__send__(symbol [, args...]) => obj * * Invokes the method identified by _symbol_, passing it any - * arguments specified. You can use __send__ if the name + * arguments specified. You can use \_\_send__ if the name * +send+ clashes with an existing method in _obj_. Raises an * NoMethodError exception for private methods except when it is * called in function call style.