summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1998-07-01 23:49:32 -0400
committerGurusamy Sarathy <gsar@cpan.org>1998-07-04 05:20:52 +0000
commit411d5715b3cb26f927bf38fdb0914c2fef9fb906 (patch)
tree469e9ebc21cd9c68cbf97e2d589cf0d6448a852a /pp.c
parentf5b3b617eb55282fb17cc7521936a9150dc99cb3 (diff)
downloadperl-411d5715b3cb26f927bf38fdb0914c2fef9fb906.tar.gz
allow a flags args to fbm_instr() for future needs
Message-Id: <199807020749.DAA12379@monk.mps.ohio-state.edu> Subject: [PATCH 5.004_68] mORE FBM_ CHANGES FOR FUTURE p4raw-id: //depot/perl@1297
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp.c b/pp.c
index a927b3ddc0..b5a184a4b9 100644
--- a/pp.c
+++ b/pp.c
@@ -1996,7 +1996,7 @@ PP(pp_index)
else if (offset > biglen)
offset = biglen;
if (!(tmps2 = fbm_instr((unsigned char*)tmps + offset,
- (unsigned char*)tmps + biglen, little)))
+ (unsigned char*)tmps + biglen, little, 0)))
retval = -1 + arybase;
else
retval = tmps2 - tmps + arybase;
@@ -4327,7 +4327,7 @@ PP(pp_split)
#ifndef lint
while (s < strend && --limit &&
(m=fbm_instr((unsigned char*)s, (unsigned char*)strend,
- rx->check_substr)) )
+ rx->check_substr, 0)) )
#endif
{
dstr = NEWSV(31, m-s);