summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2003-05-24 13:25:17 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2003-05-26 20:31:56 +0000
commit971ecbe6f2aaf71c3a71c08000760f3d4f9bf287 (patch)
tree0d5b7c3552b5eef74a10c429a12a76ffe69c3ce3 /pp_ctl.c
parent48dc1ee65779dbdc177bc16530afd4f43c1c0ecf (diff)
downloadperl-971ecbe6f2aaf71c3a71c08000760f3d4f9bf287.tar.gz
Re: [perl #22299] goto doesn't find label
Date: Sat, 24 May 2003 12:25:17 +0100 Message-ID: <20030524112517.GA11761@fdgroup.com> Subject: [PATCH] Re: [perl #22299] goto doesn't find label From: Dave Mitchell <davem@fdgroup.com> Date: Mon, 26 May 2003 13:47:11 +0100 Message-ID: <20030526124710.GA17670@fdgroup.com> p4raw-id: //depot/perl@19625
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 2380d5d673..f726ab79bd 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -2402,7 +2402,7 @@ PP(pp_goto)
switch (CxTYPE(cx)) {
case CXt_EVAL:
leaving_eval = TRUE;
- if (CxREALEVAL(cx)) {
+ if (!CxTRYBLOCK(cx)) {
gotoprobe = (last_eval_cx ?
last_eval_cx->blk_eval.old_eval_root :
PL_eval_root);