diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-06-06 11:12:24 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-06-07 09:55:50 -0600 |
commit | 2269d15c887e7326906ea6195d5970ac188c3411 (patch) | |
tree | 8a790b3ebc6a83281b1fea5d62efce3d7a37367c /regen | |
parent | 3c8317961e30b9ee408493f68b38d723f6748319 (diff) | |
download | perl-2269d15c887e7326906ea6195d5970ac188c3411.tar.gz |
docs patch: 'unicode_strings' doesn't change utf8ness
We had a field report of lack of clarity around this, so add some
text.
Diffstat (limited to 'regen')
-rwxr-xr-x | regen/feature.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/regen/feature.pl b/regen/feature.pl index 15315c7932..1a85d0a6ce 100755 --- a/regen/feature.pl +++ b/regen/feature.pl @@ -338,7 +338,7 @@ read_only_bottom_close_and_rename($h); __END__ package feature; -our $VERSION = '1.28'; +our $VERSION = '1.29'; FEATURES @@ -437,7 +437,8 @@ C<use feature 'unicode_strings'> tells the compiler to use Unicode semantics in all string operations executed within its scope (unless they are also within the scope of either C<use locale> or C<use bytes>). The same applies to all regular expressions compiled within the scope, even if executed outside -it. +it. It does not change the internal representation of strings, but only how +they are interpreted. C<no feature 'unicode_strings'> tells the compiler to use the traditional Perl semantics wherein the native character set semantics is used unless it is |