In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/8df2720896c1251ba78697a9bf7732e48b0e8233?hp=f9ae8fb691541b6b2e48da8df7a37ed95c4f518a>
- Log ----------------------------------------------------------------- commit 8df2720896c1251ba78697a9bf7732e48b0e8233 Author: Karl Williamson <[email protected]> Date: Fri Apr 5 12:37:56 2013 -0600 perlop.pod: Fix typo that yields wrong info ----------------------------------------------------------------------- Summary of changes: pod/perlop.pod | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pod/perlop.pod b/pod/perlop.pod index 4ec0539..7db132c 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -1408,7 +1408,7 @@ table: \c? chr(127) In other words, it's the character whose code point has had 64 xor'd with -its uppercase. C<\c?> is DELETE because C<ord("@") ^ 64> is 127, and +its uppercase. C<\c?> is DELETE because C<ord("?") ^ 64> is 127, and C<\c@> is NULL because the ord of "@" is 64, so xor'ing 64 itself produces 0. Also, C<\c\I<X>> yields C< chr(28) . "I<X>"> for any I<X>, but cannot come at the -- Perl5 Master Repository
