From: Rafael Garcia-Suarez Date: Tue, 11 Sep 2007 15:59:15 +0000 (+0000) Subject: Some escapes were mentioned twice, although they're not qr//-specific X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=196ac2fcd2dad2d042479c51fe09289545232c66;p=p5sagit%2Fp5-mst-13.2.git Some escapes were mentioned twice, although they're not qr//-specific p4raw-id: //depot/perl@31847 --- diff --git a/pod/perlre.pod b/pod/perlre.pod index 07ff022..96ed872 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -223,9 +223,9 @@ X<\0> X<\c> X<\N> X<\x> \e escape (think troff) (ESC) \033 octal char (example: ESC) \x1B hex char (example: ESC) - \x{263a} wide hex char (example: Unicode SMILEY) + \x{263a} long hex char (example: Unicode SMILEY) \cK control char (example: VT) - \N{name} named char + \N{name} named Unicode character \l lowercase next char (think vi) \u uppercase next char (think vi) \L lowercase till \E (think vi) @@ -270,9 +270,6 @@ X X X X optionally be wrapped in curly brackets for safer parsing. \g{name} Named backreference \k Named backreference - \N{name} Named Unicode character, or Unicode escape - \x12 Hexadecimal escape sequence - \x{1234} Long hexadecimal escape sequence \K Keep the stuff left of the \K, don't include it in $& \v Vertical whitespace \V Not vertical whitespace