This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.c: Compile inverted character classes with \p{}
authorKarl Williamson <public@khwilliamson.com>
Fri, 6 Jan 2012 22:05:11 +0000 (15:05 -0700)
committerKarl Williamson <public@khwilliamson.com>
Fri, 13 Jan 2012 16:58:40 +0000 (09:58 -0700)
commitb6c46382308166d54090e3d8e385710664693ac0
tree3f62b91ddd0e1f8b0250b949abac29e9ff0f3e8d
parent4004d578dcad74f2c69d8fc9fcd867c0a9b75766
regcomp.c: Compile inverted character classes with \p{}

This commit causes character classes of the form [^\p{...}] to have
their code points known at compile time instead of runtime.  This allows
for better optimization and runtime execution speed.
regcomp.c