diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-12-11 22:52:46 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-12-11 22:52:46 +0000 |
commit | 39efed7fb68a394db844e6c312aadb72695b0ad8 (patch) | |
tree | 51f168a220b69826b73c62d0e0afcac285491ab1 /util.c | |
parent | 373b357f184d67d2c589b8aca81c803276397db5 (diff) | |
download | perl-39efed7fb68a394db844e6c312aadb72695b0ad8.tar.gz |
Add BmPREVIOUS_set(), and use it in the one place that BmPREVIOUS is
modified.
p4raw-id: //depot/perl@29525
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -522,7 +522,7 @@ Perl_fbm_compile(pTHX_ SV *sv, U32 flags) } } BmRARE(sv) = s[rarest]; - BmPREVIOUS(sv) = (U16)rarest; + BmPREVIOUS_set(sv, rarest); BmUSEFUL(sv) = 100; /* Initial value */ if (flags & FBMcf_TAIL) SvTAIL_on(sv); |