diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-07-26 09:56:27 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-07-26 10:38:26 -0600 |
commit | 7a4d6ad6921760cfbf05a181861e2cddaf121a45 (patch) | |
tree | 864de9e127c7cd0b3108f775640d5ab264ccd696 /t | |
parent | 0338a13cb079549e909a87da11794f34c6f708e5 (diff) | |
download | perl-7a4d6ad6921760cfbf05a181861e2cddaf121a45.tar.gz |
mktables: Change \w definition to match new Unicode's
Unicode has changed their definition of what should match \w.
http://www.unicode.org/reports/tr18/. This follows that change.
Diffstat (limited to 't')
-rw-r--r-- | t/re/re_tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/re/re_tests b/t/re/re_tests index 3d281555c9..9fa374e700 100644 --- a/t/re/re_tests +++ b/t/re/re_tests @@ -1696,4 +1696,9 @@ ab[c\\\](??{"x"})]{3}d ab\\](d y - - (?a:\p{Any}) \x{100} y $& \x{100} (?aa:\p{Any}) \x{100} y $& \x{100} +\w \x{200C} y $& \x{200C} +\W \x{200C} n - - +\w \x{200D} y $& \x{200D} +\W \x{200D} n - - + # vim: softtabstop=0 noexpandtab |