summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1998-03-04 18:55:54 -0500
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-03-05 19:12:14 +0000
commit2779dcf1a3ceec167d36a36fc44de44737edcc4c (patch)
treee91883f4c1fd963dbccd4a752591b8144c57bf1c /op.c
parent4dab3d39561362222a38b2524aa7c6adfc2626de (diff)
downloadperl-2779dcf1a3ceec167d36a36fc44de44737edcc4c.tar.gz
[5.004_61 PATCH] Make incompatible changes to RE engine NOW
p4raw-id: //depot/perl@785
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 28e05f1c53..907e9755d7 100644
--- a/op.c
+++ b/op.c
@@ -4261,7 +4261,7 @@ ck_index(OP *o)
if (o->op_flags & OPf_KIDS) {
OP *kid = cLISTOPo->op_first->op_sibling; /* get past pushmark */
if (kid && kid->op_type == OP_CONST)
- fbm_compile(((SVOP*)kid)->op_sv);
+ fbm_compile(((SVOP*)kid)->op_sv, 0);
}
return ck_fun(o);
}