diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-28 22:22:44 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-28 22:22:44 +0000 |
| commit | 7c6e5863c717c807efbd16def5ca36e88abcfa1e (patch) | |
| tree | ff439e9522a3b593e1a72bdb1f5142bcd781b64a | |
| parent | 3d8696d26423b2c027b20b517c0f2b53a6baf84e (diff) | |
| download | ruby-7c6e5863c717c807efbd16def5ca36e88abcfa1e.tar.gz ruby-7c6e5863c717c807efbd16def5ca36e88abcfa1e.tar.xz ruby-7c6e5863c717c807efbd16def5ca36e88abcfa1e.zip | |
* 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
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | eval.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Thu Sep 29 07:22:05 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * 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 <nobu@ruby-lang.org> * eval.c (ev_const_get), variable.c (rb_const_get_0): retry only when @@ -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 <code>__send__</code> if the name + * arguments specified. You can use <code>\_\_send__</code> if the name * +send+ clashes with an existing method in _obj_. * * class Klass |
