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 | c7ffe40f116749455e3b8f9fcaff70c22203d684 (patch) | |
tree | e91c9760327541727c0ba847c688d45aa9cdad2d /eval.c | |
parent | d4849b189da3f59724e4c0ead34ce91a4eb4bc69 (diff) |
* evalc. (rb_f_send): underscores need to be escaped.
fixed by Doug Kearns. [ruby-core:06053]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 <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_. Raises an * NoMethodError exception for private methods except when it is * called in function call style. |