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 /lib/utf8.pm | |
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 'lib/utf8.pm')
-rw-r--r-- | lib/utf8.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/utf8.pm b/lib/utf8.pm index 8f650d9d00..5ddd4ba21a 100644 --- a/lib/utf8.pm +++ b/lib/utf8.pm @@ -71,8 +71,9 @@ attempt to canonicalize variable names for you.) =item * Regular expressions match characters instead of bytes. For instance, -"." matches a character instead of a byte. (However, the C<\O> pattern -is provided to force a match a single byte ("octet", hence C<\O>).) +"." matches a character instead of a byte. (However, the C<\C> pattern +is provided to force a match a single byte ("C<char>" in C, hence +C<\C>).) =item * |