diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-12-20 16:23:36 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-12-20 16:28:36 +0100 |
commit | 1863b87966ed39b042c45e12d1b4e0b90b9cc071 (patch) | |
tree | eae5c03c697269b036352d4b007f9c1294f189c9 /MANIFEST | |
parent | 1d5fe431325abdb0f3947d563ebdef67bd4cb7cd (diff) | |
download | perl-1863b87966ed39b042c45e12d1b4e0b90b9cc071.tar.gz |
Introduce C<use feature "unicode_strings">
This turns on the unicode semantics for uc/lc/ucfirst/lcfirst
operations on strings without the UTF8 bit set but with ASCII
characters higher than 127. This replaces the "legacy" pragma
experiment.
Note that currently this feature sets both a bit in $^H and
a (unused) key in %^H. The bit in $^H could be replaced by
a flag on the uc/lc/etc op. It's probably not feasible to
test a key in %^H in pp_uc in friends each time we want to
know which semantics to apply.
Diffstat (limited to 'MANIFEST')
-rw-r--r-- | MANIFEST | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -3454,6 +3454,7 @@ lib/ExtUtils/XSSymSet.pm on VMS, manage linker symbols when building extensions lib/fastcwd.pl a faster but more dangerous getcwd lib/feature.pm Pragma to enable new syntax lib/feature.t See if features work +lib/feature/unicode_strings.t See if feature "unicode_strings" work lib/File/Basename.pm Emulate the basename program lib/File/Basename.t See if File::Basename works lib/File/CheckTree.pm Perl module supporting wholesale file mode validation @@ -3492,8 +3493,6 @@ lib/importenv.pl Perl routine to get environment into variables lib/integer.pm For "use integer" lib/integer.t For "use integer" testing lib/Internals.t For Internals::* testing -lib/legacy.pm Pragma to preserve legacy behavior -lib/legacy.t For "use legacy" testing lib/less.pm For "use less" lib/less.t See if less support works lib/locale.pm For "use locale" |