mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_eval.c (check_funcall): adjust indent.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34554 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1516f8eb9f
commit
c25f3d785d
1 changed files with 3 additions and 3 deletions
|
@ -273,10 +273,10 @@ check_funcall(VALUE recv, ID mid, int argc, VALUE *argv)
|
|||
|
||||
me = rb_method_entry(klass, idRespond_to);
|
||||
if (me && !(me->flag & NOEX_BASIC)) {
|
||||
VALUE args[2];
|
||||
VALUE args[2];
|
||||
|
||||
args[0] = ID2SYM(mid);
|
||||
args[1] = Qtrue;
|
||||
args[0] = ID2SYM(mid);
|
||||
args[1] = Qtrue;
|
||||
if (!RTEST(vm_call0(th, recv, idRespond_to, 2, args, me))) {
|
||||
return Qundef;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue