From cd6472fc34fd70358c7c0cf2c39a2eb7fe57114d Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Tue, 15 Nov 2011 18:06:10 -0800 Subject: [PATCH] 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. --- pp_ctl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pp_ctl.c b/pp_ctl.c index 667f91b97e..98a280ff16 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -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) {