Combine two blocks in pp_ctl.c:S_doeval

As of commit e4a21daa4e9 which removed the intervening code, there
have been two adjacent if blocks in S_doeval with the same condition.
They can be merged into one, to avoid confusing people (like me) try-
ing to understand the code.
This commit is contained in:
Father Chrysostomos 2011-11-15 18:06:10 -08:00
parent a72a10949f
commit cd6472fc34

View File

@ -3548,9 +3548,8 @@ S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq)
POPEVAL(cx);
namesv = cx->blk_eval.old_namesv;
}
}
if (yystatus != 3)
LEAVE_with_name("eval"); /* pp_entereval knows about this LEAVE. */
}
if (in_require) {
if (!cx) {