From: Nicholas Clark Date: Sat, 17 Nov 2007 18:57:51 +0000 (+0000) Subject: 0777 is 512, not 522. (A typo.) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5f0bb0cff2db33516ad752e2ee0eeca0db43da58;p=p5sagit%2Fp5-mst-13.2.git 0777 is 512, not 522. (A typo.) p4raw-id: //depot/perl@32376 --- diff --git a/pod/perlrebackslash.pod b/pod/perlrebackslash.pod index e1fdebb..d8cfb6a 100644 --- a/pod/perlrebackslash.pod +++ b/pod/perlrebackslash.pod @@ -176,7 +176,7 @@ Mnemonic: Iamed character. Octal escapes consist of a backslash followed by two or three octal digits matching the code point of the character you want to use. This allows for -522 characters (C<\00> up to C<\777>) that can be expressed this way. +512 characters (C<\00> up to C<\777>) that can be expressed this way. Enough in pre-Unicode days, but most Unicode characters cannot be escaped this way.