diff options
author | Juerd Waalboer <#####@juerd.nl> | 2007-03-04 17:00:19 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2007-03-07 13:23:23 +0000 |
commit | 2575c402a8f9be55f848bdfb219afbf912c50ac1 (patch) | |
tree | c21a19c42deaa2dba098c38d74338a7c01328c28 /pod/perlport.pod | |
parent | 2a6a970fa1b36c99c83fd3fdd48253c1b567db9b (diff) | |
download | perl-2575c402a8f9be55f848bdfb219afbf912c50ac1.tar.gz |
Re: [PATCH] (Re: [PATCH] unicode/utf8 pod)
Message-ID: <20070304150019.GN4723@c4.convolution.nl>
p4raw-id: //depot/perl@30493
Diffstat (limited to 'pod/perlport.pod')
-rw-r--r-- | pod/perlport.pod | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/pod/perlport.pod b/pod/perlport.pod index 4905ad636d..e7a8ca5a45 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -672,12 +672,9 @@ ISO 8859-1 bytes beyond 0x7f into your strings might cause trouble later. If the bytes are native 8-bit bytes, you can use the C<bytes> pragma. If the bytes are in a string (regular expression being a curious string), you can often also use the C<\xHH> notation instead -of embedding the bytes as-is. If they are in some particular legacy -encoding (ether single-byte or something more complicated), you can -use the C<encoding> pragma. (If you want to write your code in UTF-8, -you can use either the C<utf8> pragma, or the C<encoding> pragma.) -The C<bytes> and C<utf8> pragmata are available since Perl 5.6.0, and -the C<encoding> pragma since Perl 5.8.0. +of embedding the bytes as-is. (If you want to write your code in UTF-8, +you can use the C<utf8>.) The C<bytes> and C<utf8> pragmata are +available since Perl 5.6.0. =head2 System Resources |