This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix look-behind bug with \b{wb}
authorKarl Williamson <khw@cpan.org>
Mon, 19 Oct 2015 15:56:27 +0000 (09:56 -0600)
committerKarl Williamson <khw@cpan.org>
Mon, 19 Oct 2015 18:40:24 +0000 (12:40 -0600)
commitb4b2ec55cecba4503a6d679455fa72e5d81eda59
tree2f95bd0dfe650c2211d87b64048443d71663f249
parentda271c5413343d25ab18d217cdc225c0be1633d9
Fix look-behind bug with \b{wb}

The algorithm for determining a word break requires look-behind in some
cases.  Certain characters are ignored in the look-behind, but until
this commit, the parse pointer was unchanged, causing things to get out
of sync in some edge cases.
regexec.c