diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-13 01:49:16 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-13 01:49:16 +0000 |
commit | be4f712a01f8cac0b4b4290efd894c00a5af5374 (patch) | |
tree | 21a5460e3d7614b85bd8eaa3702db5c43eecba90 /pp_ctl.c | |
parent | 9d14cc18f7ccf6279e31fce0414a00b7ff3bd076 (diff) | |
download | perl-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.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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); } |