Remove one of the lines that did the same thing; fix #3836

The change is suggested by `ukrainskiysergey` in #3836.
I deleted the other line for clarity. I also updated comment lines.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-10-28 23:35:01 +09:00
parent 6316e0c75d
commit 1b45e034ba
+2 -3
View File
@@ -2750,7 +2750,7 @@ RETRY_TRY_BLOCK:
MRB_PROC_SET_TARGET_CLASS(p, mrb_class_ptr(recv));
p->flags |= MRB_PROC_SCOPE;
/* prepare stack */
/* prepare call stack */
ci = cipush(mrb);
ci->pc = pc + 1;
ci->acc = a;
@@ -2762,8 +2762,7 @@ RETRY_TRY_BLOCK:
/* prepare stack */
mrb->c->stack += a;
/* setup closure */
MRB_PROC_SET_TARGET_CLASS(p, ci->target_class);
/* setup block to call */
ci->proc = p;
irep = p->body.irep;