diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1999-08-29 12:46:53 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-30 02:57:05 +0000 |
commit | 4a2d328fcdc90a0fcbd435b479571aad60159771 (patch) | |
tree | 462cf5ff96f435b65c4ea7c9cbcc12daf97821a3 /pod/perlop.pod | |
parent | d4bea2fb9d94a2ce4ff340ae9eab604f38ab2d31 (diff) | |
download | perl-4a2d328fcdc90a0fcbd435b479571aad60159771.tar.gz |
Use \N{named characters} instead of \C.
To: jhi@iki.fi
Cc: larry@wall.org (Larry Wall), Tim.Bunce@ig.co.uk (Tim Bunce),
perl5-porters@perl.org (Mailing list Perl5)
Subject: Re: [PATCH 5.005_58] Named characters in Perl
Message-Id: <199908292046.QAA05510@monk.mps.ohio-state.edu>
p4raw-id: //depot/cfgperl@4052
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index bd4ca1df7d..14ca6b5ec0 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -673,7 +673,7 @@ a transliteration, the first eleven of these sequences may be used. \x1b hex char (ESC) \x{263a} wide hex char (SMILEY) \c[ control char (ESC) - \C{name} named char + \N{name} named char \l lowercase next char \u uppercase next char @@ -684,7 +684,7 @@ a transliteration, the first eleven of these sequences may be used. If C<use locale> is in effect, the case map used by C<\l>, C<\L>, C<\u> and C<\U> is taken from the current locale. See L<perllocale>. For -documentation of C<\C{name}>, see L<charnames>. +documentation of C<\N{name}>, see L<charnames>. All systems use the virtual C<"\n"> to represent a line terminator, called a "newline". There is no such thing as an unvarying, physical |