This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.c: /[[:lower:]]/i should match the same as /\p{Lower}/i
authorKarl Williamson <public@khwilliamson.com>
Sat, 11 Feb 2012 17:49:06 +0000 (10:49 -0700)
committerKarl Williamson <public@khwilliamson.com>
Sat, 11 Feb 2012 21:01:29 +0000 (14:01 -0700)
commitdab0c3e7e357a28081ca24560f20e83c1d47ce1f
treed9908bba3f41f503a3d7c9bd3bfb5b4c3ab15fd4
parent24ad4a07e88519ae8e63d0b67d519e62a935b577
regcomp.c: /[[:lower:]]/i should match the same as /\p{Lower}/i

Same for [[:upper:]] and \p{Upper}.  These were matching instead all of
[[:alpha:]] or \p{Alpha}.  What /\p{Lower}/i and /\p{Upper}/i match instead
is \p{Cased}, and so that is what these should match.
charclass_invlists.h
embedvar.h
intrpvar.h
regcomp.c
regen/mk_invlists.pl
sv.c
t/re/re_tests