diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-11-27 11:39:48 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-12-31 08:27:22 -0700 |
commit | f5a7f1939d98a1e112bd8fd009fc4ddbc82f517e (patch) | |
tree | 93a55759ff821cf884f20bd3de0f36defb9a7102 /lib | |
parent | ac7dbdb620cfd1dc103bcc947f1973c493635a01 (diff) | |
download | perl-f5a7f1939d98a1e112bd8fd009fc4ddbc82f517e.tar.gz |
mktables: Add \p{Unicode}
This is a clearer synonym for \p{Any}
Diffstat (limited to 'lib')
-rw-r--r-- | lib/unicore/mktables | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index 512033ad9a..0006f5da8e 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -13229,6 +13229,7 @@ sub compile_perl() { Description => "All Unicode code points: [\\x{0000}-\\x{10FFFF}]", ); $Any->add_range(0, 0x10FFFF); + $Any->add_alias('Unicode'); # Assigned is the opposite of gc=unassigned my $Assigned = $perl->add_match_table('Assigned', |