diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-07-29 11:57:14 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-07-29 11:57:14 +0000 |
commit | c463366dfd75056885028a95e8e2fc6e135d9194 (patch) | |
tree | 684f70d3ecfe562d0a3c48d29c69309f7ac92748 /ext/-test- | |
parent | 26de0b131e57952d29664de4453e2f04ec3df2bc (diff) | |
download | ruby-c463366dfd75056885028a95e8e2fc6e135d9194.tar.gz |
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
Diffstat (limited to 'ext/-test-')
-rw-r--r-- | ext/-test-/funcall/passing_block.c | 2 | ||||
-rw-r--r-- | ext/-test-/notimplement/bug.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/-test-/funcall/passing_block.c b/ext/-test-/funcall/passing_block.c index 0200f80369..70cb210831 100644 --- a/ext/-test-/funcall/passing_block.c +++ b/ext/-test-/funcall/passing_block.c @@ -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 diff --git a/ext/-test-/notimplement/bug.c b/ext/-test-/notimplement/bug.c index 34731bc2e6..8e9cae707a 100644 --- a/ext/-test-/notimplement/bug.c +++ b/ext/-test-/notimplement/bug.c @@ -4,7 +4,7 @@ static VALUE bug_funcall(int argc, VALUE *argv, VALUE self) { if (argc < 1) rb_raise(rb_eArgError, "not enough argument"); - return rb_funcall2(self, rb_to_id(*argv), argc-1, argv+1); + return rb_funcallv(self, rb_to_id(*argv), argc-1, argv+1); } void |