Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 213dc9d1dd41762afd38cca1e663ed29a5cedca8
https://github.com/Perl/perl5/commit/213dc9d1dd41762afd38cca1e663ed29a5cedca8
Author: Karl Williamson <[email protected]>
Date: 2021-08-22 (Sun, 22 Aug 2021)
Changed paths:
M inline.h
Log Message:
-----------
isUTF8 DFA: change while {} to do {} while;
This saves a conditional in many cases. Core Perl doesn't call this
on an empty string, so the first test that it is empty is redundant.
We can't guarantee this for non-core calls, so the conditional is made
explicit for them.