summaryrefslogtreecommitdiff
path: root/perly.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-18 03:51:03 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-18 03:51:03 +0000
commit2c15bef39460c09b2a7846a30a4fc1fc1c4f93e4 (patch)
tree956621b9bd6ef82607bc2044a25afda197257cef /perly.c
parent2aa1486d5d3f3b27276656f9b9ef842d3a21a386 (diff)
downloadperl-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.c')
-rw-r--r--perly.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/perly.c b/perly.c
index b92de4eb21..0feca48bed 100644
--- a/perly.c
+++ b/perly.c
@@ -1623,8 +1623,7 @@ break;
case 23:
#line 179 "perly.y"
{ PL_copline = yyvsp[-5].ival;
- yyval.opval = newSTATEOP(0, Nullch,
- newCONDOP(0, yyvsp[-3].opval, scope(yyvsp[-1].opval), yyvsp[0].opval));
+ yyval.opval = newCONDOP(0, yyvsp[-3].opval, scope(yyvsp[-1].opval), yyvsp[0].opval);
PL_hints |= HINT_BLOCK_SCOPE; }
break;
case 24: