diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-31 05:05:42 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-31 05:05:42 +0000 |
commit | c2a735686052c4e782e029afd2945461349272c6 (patch) | |
tree | 03d1a8afd63a583a3ab2457c8c43da04794c8d58 /regexec.c | |
parent | d64830355c411305652aeae96623a3ca530d6d38 (diff) | |
download | perl-c2a735686052c4e782e029afd2945461349272c6.tar.gz |
fix buggy multiline matching of C<"a\nxb\n" =~ /(?!\A)x/m>
(from Ilya Zakharevich)
p4raw-id: //depot/perl@6172
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1881,7 +1881,7 @@ S_regmatch(pTHX_ regnode *prog) } sayNO; case SBOL: - if (locinput == PL_regbol && PL_regprev == '\n') + if (locinput == PL_bostr) break; sayNO; case GPOS: |