summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-25 04:05:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-25 04:05:51 +0000
commita943745a4234ef774f28ac9b87c5e4fe94ee96bb (patch)
tree57934c682b6023658d90044021e559a73bd90ee5 /proc.c
parent66a97945e30119503b43d0d2b8dde62c961c3c17 (diff)
* proc.c (missing_wrap): new_arg is already given if argc > 1.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25090 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/proc.c b/proc.c
index c6333b067b..ef741a7b65 100644
--- a/proc.c
+++ b/proc.c
@@ -884,13 +884,12 @@ rb_obj_is_method(VALUE m)
}
static VALUE
-missing_wrap(VALUE dummy, VALUE args, int argc, VALUE *argv)
+missing_wrap(VALUE new_args, VALUE args, int argc, VALUE *argv)
{
- VALUE new_args = rb_ary_new4(argc, argv);
VALUE obj = RARRAY_PTR(args)[0];
VALUE sym = RARRAY_PTR(args)[1];
-
+ if (argc <= 1) new_args = rb_ary_new4(argc, argv);
rb_ary_unshift(new_args, sym);
return rb_funcall2(obj, rb_intern("method_missing"),
check_argc(RARRAY_LEN(new_args)), RARRAY_PTR(new_args));