summaryrefslogtreecommitdiff
path: root/pod/perlvar.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-07 17:49:58 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-07 17:49:58 +0000
commit46487f74b15c77c6f040c8b818f810a5255b1078 (patch)
treeab390652270eff34aaac73f45f85a2208c8d0804 /pod/perlvar.pod
parenta3dfe201291c96fc01babd3d4782d52ba945f2a3 (diff)
downloadperl-46487f74b15c77c6f040c8b818f810a5255b1078.tar.gz
change $^U to $^WIDE_SYSTEM_CALLS; s/PL_bigchar/PL_widesyscalls/;
introduce -C switch (sets $^WIDE_SYSTEM_CALLS) p4raw-id: //depot/perl@5029
Diffstat (limited to 'pod/perlvar.pod')
-rw-r--r--pod/perlvar.pod28
1 files changed, 15 insertions, 13 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod
index 5b93be11f0..28842efa5b 100644
--- a/pod/perlvar.pod
+++ b/pod/perlvar.pod
@@ -873,19 +873,6 @@ The time at which the program began running, in seconds since the
epoch (beginning of 1970). The values returned by the B<-M>, B<-A>,
and B<-C> filetests are based on this value.
-=item $^U
-
-Global flag that enables system calls made by Perl to use wide character
-APIs native to the system, if available. This is currently only implemented
-on the Windows platform.
-
-The initial value is typically C<0> for compatibility with Perl versions
-earlier than 5.6, but may be automatically set to C<1> by Perl if the system
-provides a user-settable default (e.g., C<$ENV{LC_CTYPE}>).
-
-The C<byte> pragma always overrides the effect of this flag in the current
-lexical scope. See L<byte>.
-
=item $^V
The revision, version, and subversion of the Perl interpreter, represented
@@ -919,6 +906,21 @@ related to the B<-w> switch.) See also L<warnings>.
The current set of warning checks enabled by the C<use warnings> pragma.
See the documentation of C<warnings> for more details.
+=item ${^WIDE_SYSTEM_CALLS}
+
+Global flag that enables system calls made by Perl to use wide character
+APIs native to the system, if available. This is currently only implemented
+on the Windows platform.
+
+This can also be enabled from the command line using the C<-C> switch.
+
+The initial value is typically C<0> for compatibility with Perl versions
+earlier than 5.6, but may be automatically set to C<1> by Perl if the system
+provides a user-settable default (e.g., C<$ENV{LC_CTYPE}>).
+
+The C<byte> pragma always overrides the effect of this flag in the current
+lexical scope. See L<byte>.
+
=item $EXECUTABLE_NAME
=item $^X