diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-04-18 22:26:32 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-04-18 22:56:56 -0600 |
commit | 9814da73267da9acf65c9e78d0336423cafb693e (patch) | |
tree | 400d933a67978e7dbdcd6380f2944e81c363cb11 /pod | |
parent | f89927845af485c1da006d15e715fedc4502187c (diff) | |
download | perl-9814da73267da9acf65c9e78d0336423cafb693e.tar.gz |
perlrecharclass: Nits
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlrecharclass.pod | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pod/perlrecharclass.pod b/pod/perlrecharclass.pod index d26b0356b9..4c91931cc1 100644 --- a/pod/perlrecharclass.pod +++ b/pod/perlrecharclass.pod @@ -634,7 +634,7 @@ and any C<\p> property name can be prefixed with "Is" such as C<\p{IsAlpha}>.) Both the C<\p> counterparts always assume Unicode rules are in effect. On ASCII platforms, this means they assume that the code points from 128 to 255 are Latin-1, and that means that using them under locale rules is -unwise unless the locale is guaranteed to be Latin-1. In contrast, the +unwise unless the locale is guaranteed to be Latin-1 or UTF-8. In contrast, the POSIX character classes are useful under locale rules. They are affected by the actual rules in effect, as follows: @@ -675,7 +675,8 @@ The POSIX class matches the same as the ASCII range counterpart. =back -Which rules apply are determined as described in L<perlre/Which character set modifier is in effect?>. +Which rules apply are determined as described in +L<perlre/Which character set modifier is in effect?>. It is proposed to change this behavior in a future release of Perl so that whether or not Unicode rules are in effect would not change the |