mktables: Add \p{Unicode}
authorKarl Williamson <public@khwilliamson.com>
Wed, 27 Nov 2013 18:39:48 +0000 (11:39 -0700)
committerKarl Williamson <public@khwilliamson.com>
Tue, 31 Dec 2013 15:27:22 +0000 (08:27 -0700)
This is a clearer synonym for \p{Any}

lib/unicore/mktables
pod/perldelta.pod

index 512033a..0006f5d 100644 (file)
@@ -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',
index 5c4c982..96e9163 100644 (file)
@@ -25,7 +25,10 @@ XXX New core language features go here.  Summarize user-visible core language
 enhancements.  Particularly prominent performance optimisations could go
 here, but most should go in the L</Performance Enhancements> section.
 
-[ List each enhancement as a =head2 entry ]
+=head2 New C<\p{Unicode}> regular expression pattern property
+
+This is a synonym for C<\p{Any}> and matches the set of Unicode-defined
+code points 0 - 0x10FFFF.
 
 =head1 Security