summaryrefslogtreecommitdiff
path: root/pod/perlrun.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-01-21 14:18:40 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-01-21 14:18:40 +0000
commit672fde27ba83048a1bcb79269f93917843058281 (patch)
tree2a1307512229148cd2df2d2a4e888f8f0c69eb1c /pod/perlrun.pod
parent4f7806f3e19db049970d6c6265e5b956d1d7f74a (diff)
downloadperl-672fde27ba83048a1bcb79269f93917843058281.tar.gz
Allow explicit -C enable/disable by -C:1/-C:0
(suggested by Peter Haworth). p4raw-id: //depot/perl@18536
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r--pod/perlrun.pod8
1 files changed, 5 insertions, 3 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod
index 46e18493d4..9622b4d787 100644
--- a/pod/perlrun.pod
+++ b/pod/perlrun.pod
@@ -4,7 +4,7 @@ perlrun - how to execute the Perl interpreter
=head1 SYNOPSIS
-B<perl> S<[ B<-CsTtuUWX> ]>
+B<perl> S<[ B<-sTtuUWX> ]>
S<[ B<-hv> ] [ B<-V>[:I<configvar>] ]>
S<[ B<-cw> ] [ B<-d>[:I<debugger>] ] [ B<-D>[I<number/list>] ]>
S<[ B<-pna> ] [ B<-F>I<pattern> ] [ B<-l>[I<octal>] ] [ B<-0>[I<octal>] ]>
@@ -14,6 +14,7 @@ B<perl> S<[ B<-CsTtuUWX> ]>
S<[ B<-x>[I<dir>] ]>
S<[ B<-i>[I<extension>] ]>
S<[ B<-e> I<'command'> ] [ B<--> ] [ I<programfile> ] [ I<argument> ]...>
+ S<[ B<-C[:I<boolean>]> ]>
=head1 DESCRIPTION
@@ -264,9 +265,10 @@ is equivalent to
An alternate delimiter may be specified using B<-F>.
-=item B<-C>
+=item B<-C[:boolean]>
-enables Perl to use the Unicode APIs on the target system.
+enables Perl to use the Unicode APIs on the target system. A bare C<-C>
+enables, C<-C:1> also enables, and C<-C:0> disables.
As of Perl 5.8.1, if C<-C> is used and the locale settings (the LC_ALL,
LC_CTYPE, and LANG environment variables) indicate a UTF-8 locale,