diff options
author | Karl Williamson <khw@cpan.org> | 2017-11-30 12:59:39 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-11-30 13:56:29 -0700 |
commit | f3651218fa1e8bce8ea0dd4c0ffbb63cd82aea22 (patch) | |
tree | dd12cfd9f4402592aa48036bba5013ef28e5f399 /regcharclass.h | |
parent | 7fdcbfeb6ff2c7b15dffdedc4218e4a0803b28b5 (diff) | |
download | perl-f3651218fa1e8bce8ea0dd4c0ffbb63cd82aea22.tar.gz |
perluniprops/mktables: Fix bad entry
I spotted this entry in perluniprops recently:
\p{Nko} \p{Script_Extensions=Nko} (NOT \p{NKo})
It's saying Nko is not NKo. But case isn't supposed to matter. It
turned out that the bug was doing an eq without first canonicalizing the
names to account for case differences. I was expecting there to be more
entries that were erroneous, but it was just this one.
Diffstat (limited to 'regcharclass.h')
-rw-r--r-- | regcharclass.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regcharclass.h b/regcharclass.h index be3b56e2be..a42b28bba6 100644 --- a/regcharclass.h +++ b/regcharclass.h @@ -1898,7 +1898,7 @@ * be0f129691d479aa38646e4ca0ec1ee576ae7f75b0300a5624a7fa862fa8abba lib/unicore/extracted/DLineBreak.txt * 92449d354d9f6b6f2f97a292ebb59f6344ffdeb83d120d7d23e569c43ba67cd5 lib/unicore/extracted/DNumType.txt * e3a319527153b0c6c0c549b40fc6f3a01a7a0dcd6620784391db25901df3b154 lib/unicore/extracted/DNumValues.txt - * 163d3282d936e5a36066a1c3ef0bffd3928b05ccea1aab537a61a269f8555ee4 lib/unicore/mktables + * 07fd8e0b770bd3e6a450511f4c3da60045ca61b1d430961bbe22fd88285ca3fc lib/unicore/mktables * 21653d2744fdd071f9ef138c805393901bb9547cf3e777ebf50215a191f986ea lib/unicore/version * 913d2f93f3cb6cdf1664db888bf840bc4eb074eef824e082fceda24a9445e60c regen/charset_translations.pl * 9ea6338945a7d70e5ea4b31ac7856c0b521df96be002e94b4b3b7d31debbf3ab regen/regcharclass.pl |