From 7c6e5863c717c807efbd16def5ca36e88abcfa1e Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 28 Sep 2005 22:22:44 +0000 Subject: * evalc. (rb_f_send): underscores need to be escaped. fixed by Doug Kearns. [ruby-core:06053] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ eval.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a9bd4ba23..7de0713d4 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 0601f2d70..0e1b2801b 100644 --- a/eval.c +++ b/eval.c @@ -5930,7 +5930,7 @@ rb_apply(recv, mid, args) * 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_. * * class Klass -- cgit