summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2007-05-21 21:02:50 +0000
committerDave Mitchell <davem@fdisolutions.com>2007-05-21 21:02:50 +0000
commit670a9cb260d5f37076650f3eb5aa6c305796b0f7 (patch)
treeb046c644553ddb33cff4c97acbf31e31461fdc15 /op.c
parent8d8376c624c0059bc9da5e4cfa799a20c1846647 (diff)
downloadperl-670a9cb260d5f37076650f3eb5aa6c305796b0f7.tar.gz
move PL_multi_end into the PL_parser struct
p4raw-id: //depot/perl@31254
Diffstat (limited to 'op.c')
-rw-r--r--op.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/op.c b/op.c
index ba5e200a6a..5445e31d16 100644
--- a/op.c
+++ b/op.c
@@ -3494,8 +3494,8 @@ Perl_pmruntime(pTHX_ OP *o, OP *expr, bool isreg)
OP *curop;
if (pm->op_pmflags & PMf_EVAL) {
curop = NULL;
- if (CopLINE(PL_curcop) < (line_t)PL_multi_end)
- CopLINE_set(PL_curcop, (line_t)PL_multi_end);
+ if (CopLINE(PL_curcop) < (line_t)PL_parser->multi_end)
+ CopLINE_set(PL_curcop, (line_t)PL_parser->multi_end);
}
else if (repl->op_type == OP_CONST)
curop = repl;