diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-02-15 21:19:37 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-02-15 21:19:37 +0000 |
commit | a05d7ebb5e798334196e3cff205b658506cc4384 (patch) | |
tree | 0146d20f2a85eeb407ef0d67305028aee32c79fc /pod/perlvar.pod | |
parent | eadddfac8c84315d3b083947a75b271e6d6b7754 (diff) | |
download | perl-a05d7ebb5e798334196e3cff205b658506cc4384.tar.gz |
The new(er) way of controlling Unicode I/O (and other) features;
-C (or PERL_UNICODE). See perlrun/-C for more details.
p4raw-id: //depot/perl@18715
Diffstat (limited to 'pod/perlvar.pod')
-rw-r--r-- | pod/perlvar.pod | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 7af33eb151..6790244d73 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -1115,15 +1115,12 @@ Reflects if taint mode is on or off. 1 for on (the program was run with B<-T>), 0 for off, -1 when only taint warnings are enabled (i.e. with B<-t> or B<-TU>). This variable is read-only. -=item ${^UTF8_LOCALE} - -Reflects whether the locale settings indicated the use of UTF-8 and that -the use of UTF-8 was enabled either by the C<-C> command line switch or -by setting the PERL_UTF8_LOCALE environment variable to a true value. -This variable is read-only. If true, the STDIN is expected to be in -UTF-8, the STDOUT and STDERR are in UTF-8, and C<:utf8> is the default -file open layer. See L<perluniintro>, L<perlfunc/open>, and L<open> -for more information. +=item ${^UNICODE} + +Reflects certain Unicode settings of Perl. See L<perlrun> for more +information about the possible values. This variable is set during +Perl startup and thereafter read-only. See L<perluniintro>, +L<perlfunc/open>, and L<open> for more information. =item $PERL_VERSION |