This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp_sys.c: Avoid reparsing string
authorKarl Williamson <khw@cpan.org>
Sat, 18 Nov 2017 23:36:45 +0000 (16:36 -0700)
committerKarl Williamson <khw@cpan.org>
Sat, 25 Nov 2017 05:10:52 +0000 (22:10 -0700)
commit8cd29efcae02781bf1c9843e66b7b08105659d6b
tree307775582aa6cdb62e514a8443f1f5cb57128cf7
parentc7f61edaeb9bf126c6c222500d3350ccfced3e3f
pp_sys.c: Avoid reparsing string

By using is_utf8_invariant_string_loc() instead of plain
is_utf8_invariant_string(), we can start parsing at the first variant
(if any is found) instead of the previous behavior of starting again at
the beginning of the string.
pp_sys.c