In perl.git, the branch smoke-me/khw-bisect has been created
<http://perl5.git.perl.org/perl.git/commitdiff/12c32349202e5ea243e8558a7deb2d0a3b04f464?hp=0000000000000000000000000000000000000000>
at 12c32349202e5ea243e8558a7deb2d0a3b04f464 (commit)
- Log -----------------------------------------------------------------
commit 12c32349202e5ea243e8558a7deb2d0a3b04f464
Author: Karl Williamson <[email protected]>
Date: Sun May 11 17:41:48 2014 -0600
regcomp.c: Skip work that is a no-op
There are a few characters in the Latin1 range that can be folded to by
above-Latin1 characters. Some of these are folded to as part of a
single character fold, like KELVIN SIGN folds to 'k'. More are folded
to as part of a multi-character fold. Until this commit, there wasn't a
quick way to distinguish between the two classes. A couple of places
only want the single-character ones. It is more efficient to look for
just those than to include the multi-char ones which end up not doing
anything. This uses a bit in l1_char_class_tab.h to indicate those
characters that are in the desired class.
M handy.h
M l1_char_class_tab.h
M regcomp.c
M regen/mk_PL_charclass.pl
commit 26d82e79a1704dcab5db50b47bedd3ef1ddf6d37
Author: Karl Williamson <[email protected]>
Date: Sun May 11 18:20:54 2014 -0600
regcomp.c: Update comment to new reality
M regcomp.c
-----------------------------------------------------------------------
--
Perl5 Master Repository