diff options
author | Randy Stauner <rwstauner@cpan.org> | 2015-03-28 10:42:17 -0700 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2015-03-29 19:49:55 -0400 |
commit | 127161e0d0fece1f61b6e7a16bdf935e51849da1 (patch) | |
tree | ef54b607701d4a98bf6b3b218de380c1466e42b7 /lib | |
parent | 38f18a308b948c6eaf187519a16d060e1ec7cc20 (diff) | |
download | perl-127161e0d0fece1f61b6e7a16bdf935e51849da1.tar.gz |
Reword reference to $ENV{PERL_UNICODE} in utf8
"The $ENV{...}," doesn't read well;
Spell it out for consistency with perlrun.
Committer: Increment $VERSION and add entry to perldelta.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/utf8.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/utf8.pm b/lib/utf8.pm index ed23b61386..c8ec3773f0 100644 --- a/lib/utf8.pm +++ b/lib/utf8.pm @@ -2,7 +2,7 @@ package utf8; $utf8::hint_bits = 0x00800000; -our $VERSION = '1.15'; +our $VERSION = '1.16'; sub import { $^H |= $utf8::hint_bits; @@ -74,7 +74,7 @@ I<UTF-X> is used to refer to UTF-8 on ASCII and ISO Latin based platforms and UTF-EBCDIC on EBCDIC based platforms. See also the effects of the C<-C> switch and its cousin, the -C<$ENV{PERL_UNICODE}>, in L<perlrun>. +C<PERL_UNICODE> environment variable, in L<perlrun>. Enabling the C<utf8> pragma has the following effect: |