Re: [PATCH] pod/perluniintro.pod (removes unnecessary UTF-8 references)
authorJeffrey Friedl <jfriedl@regex.info>
Tue, 18 Dec 2001 21:13:59 +0000 (13:13 -0800)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 19 Dec 2001 04:16:39 +0000 (04:16 +0000)
Message-Id: <200112190513.fBJ5DxN56315@ventrue.corp.yahoo.com>

p4raw-id: //depot/perl@13789

pod/perluniintro.pod

index a55dbe5..9b447ca 100644 (file)
@@ -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 *