ruby-changes:48388
From: ktsj <ko1@a...>
Date: Sat, 28 Oct 2017 18:22:51 +0900 (JST)
Subject: [ruby-changes:48388] ktsj:r60502 (trunk): iseq.c: fix a typo
ktsj 2017-10-28 18:22:45 +0900 (Sat, 28 Oct 2017) New Revision: 60502 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=60502 Log: iseq.c: fix a typo Modified files: trunk/iseq.c Index: iseq.c =================================================================== --- iseq.c (revision 60501) +++ iseq.c (revision 60502) @@ -1398,7 +1398,7 @@ rb_insn_operand_intern(const rb_iseq_t * https://github.com/ruby/ruby/blob/trunk/iseq.c#L1398 if (ci->flag & VM_CALL_SUPER) rb_ary_push(flags, rb_str_new2("SUPER")); if (ci->flag & VM_CALL_KWARG) rb_ary_push(flags, rb_str_new2("KWARG")); if (ci->flag & VM_CALL_KW_SPLAT) rb_ary_push(flags, rb_str_new2("KW_SPLAT")); - if (ci->flag & VM_CALL_OPT_SEND) rb_ary_push(flags, rb_str_new2("SNED")); /* maybe not reachable */ + if (ci->flag & VM_CALL_OPT_SEND) rb_ary_push(flags, rb_str_new2("SEND")); /* maybe not reachable */ if (ci->flag & VM_CALL_ARGS_SIMPLE) rb_ary_push(flags, rb_str_new2("ARGS_SIMPLE")); /* maybe not reachable */ rb_ary_push(ary, rb_ary_join(flags, rb_str_new2("|"))); } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/