mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
rb_funcallv
* *.c: rename rb_funcall2 to rb_funcallv, except for extensions which are/will be/may be gems. [Fix GH-1406] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55773 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
26de0b131e
commit
c463366dfd
23 changed files with 53 additions and 48 deletions
|
|
@ -5,7 +5,7 @@ VALUE rb_funcall_passing_block(VALUE, ID, int, const VALUE*);
|
|||
static VALUE
|
||||
with_funcall2(int argc, VALUE *argv, VALUE self)
|
||||
{
|
||||
return rb_funcall2(self, rb_intern("target"), argc, argv);
|
||||
return rb_funcallv(self, rb_intern("target"), argc, argv);
|
||||
}
|
||||
|
||||
static VALUE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue