diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-18 03:51:03 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-18 03:51:03 +0000 |
commit | 2c15bef39460c09b2a7846a30a4fc1fc1c4f93e4 (patch) | |
tree | 956621b9bd6ef82607bc2044a25afda197257cef /perly.y | |
parent | 2aa1486d5d3f3b27276656f9b9ef842d3a21a386 (diff) | |
download | perl-2c15bef39460c09b2a7846a30a4fc1fc1c4f93e4.tar.gz |
remove spurious newSTATEOP() that causes goto to enter one too many
contexts when jumping between if and elsif blocks
p4raw-id: //depot/perl@3692
Diffstat (limited to 'perly.y')
-rw-r--r-- | perly.y | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -174,8 +174,7 @@ else : /* NULL */ { $$ = scope($2); } | ELSIF '(' mexpr ')' mblock else { PL_copline = $1; - $$ = newSTATEOP(0, Nullch, - newCONDOP(0, $3, scope($5), $6)); + $$ = newCONDOP(0, $3, scope($5), $6); PL_hints |= HINT_BLOCK_SCOPE; } ; |