summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-10-13 01:49:16 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-10-13 01:49:16 +0000
commitbe4f712a01f8cac0b4b4290efd894c00a5af5374 (patch)
tree21a5460e3d7614b85bd8eaa3702db5c43eecba90 /pp_ctl.c
parent9d14cc18f7ccf6279e31fce0414a00b7ff3bd076 (diff)
downloadperl-be4f712a01f8cac0b4b4290efd894c00a5af5374.tar.gz
don't longjmp() in pp_goto() (regressive bug from old single-stack
implementation) p4raw-id: //depot/perl@1941
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 8d43291613..b566738372 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -2204,11 +2204,6 @@ PP(pp_goto)
PL_do_undump = FALSE;
}
- if (PL_top_env->je_prev) {
- PL_restartop = retop;
- JMPENV_JUMP(3);
- }
-
RETURNOP(retop);
}