summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Friedl <jfriedl@regex.info>2001-12-18 13:13:59 -0800
committerJarkko Hietaniemi <jhi@iki.fi>2001-12-19 04:16:39 +0000
commit1d9bf7bbf0578bdc2583de01f734aade7fa3b931 (patch)
tree434ad4098f8d6d7eb238162c01cb5f878ee2ff85
parenta5f0baef722c4b1f7b5122e486e295533949351a (diff)
downloadperl-1d9bf7bbf0578bdc2583de01f734aade7fa3b931.tar.gz
Re: [PATCH] pod/perluniintro.pod (removes unnecessary UTF-8 references)
Message-Id: <200112190513.fBJ5DxN56315@ventrue.corp.yahoo.com> p4raw-id: //depot/perl@13789
-rw-r--r--pod/perluniintro.pod14
1 files changed, 7 insertions, 7 deletions
diff --git a/pod/perluniintro.pod b/pod/perluniintro.pod
index a55dbe5bf6..9b447caab9 100644
--- a/pod/perluniintro.pod
+++ b/pod/perluniintro.pod
@@ -426,13 +426,13 @@ returns:
Bit Complement Operator ~ And vec()
-The bit complement operator C<~> may produce surprising results if
-used on strings containing Unicode characters. The results are
-consistent with the internal encoding of the characters, but not with
-much else. So don't do that. Similarly for vec(): you will be
-operating on the internally encoded bit patterns of the Unicode
-characters, not on the code point values, which is very probably not
-what you want.
+The bit complement operator C<~> may produce surprising results if used on
+strings containing characters with ordinal values above 255. In such a
+case, the results are consistent with the internal encoding of the
+characters, but not with much else. So don't do that. Similarly for vec():
+you will be operating on the internally encoded bit patterns of the Unicode
+characters, not on the code point values, which is very probably not what
+you want.
=item *