1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (rb_f_send_bang): abandon the name funcall for private

aware method call.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-08-24 08:15:37 +00:00
parent ac150ad226
commit 99ab1fed49
8 changed files with 35 additions and 30 deletions

View file

@ -246,7 +246,7 @@ class Matrix
# use to general users.
#
def initialize(init_method, *argv)
self.funcall(init_method, *argv)
self.send!(init_method, *argv)
end
def init_rows(rows, copy)