diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1998-03-04 18:55:54 -0500 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-03-05 19:12:14 +0000 |
commit | 2779dcf1a3ceec167d36a36fc44de44737edcc4c (patch) | |
tree | e91883f4c1fd963dbccd4a752591b8144c57bf1c /op.c | |
parent | 4dab3d39561362222a38b2524aa7c6adfc2626de (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |