Change 34834 by [EMAIL PROTECTED] on 2008/11/14 15:12:18

        Various patches added to RT #21568 from [EMAIL PROTECTED]

Affected files ...

... //depot/perl/pod/perlfunc.pod#607 edit

Differences ...

==== //depot/perl/pod/perlfunc.pod#607 (text) ====
Index: perl/pod/perlfunc.pod
--- perl/pod/perlfunc.pod#606~34378~    2008-09-17 00:01:00.000000000 -0700
+++ perl/pod/perlfunc.pod       2008-11-14 07:12:18.000000000 -0800
@@ -2855,7 +2855,7 @@
 
 =item m//
 
-The match operator.  See L<perlop>.
+The match operator.  See L<perlop/"Regexp Quote-Like Operators">.
 
 =item map BLOCK LIST
 X<map>
@@ -4776,7 +4776,7 @@
 
 =item s///
 
-The substitution operator.  See L<perlop>.
+The substitution operator.  See L<perlop/"Regexp Quote-Like Operators">.
 
 =item say FILEHANDLE LIST
 X<say>
@@ -5521,7 +5521,7 @@
 If you had the entire header of a normal Unix email message in $header,
 you could split it up into fields and their values this way:
 
-    $header =~ s/\n\s+/ /g;  # fix continuation lines
+    $header =~ s/\n(?=\s)//g;  # fix continuation lines
     %hdrs   =  (UNIX_FROM => split /^(\S*?):\s*/m, $header);
 
 The pattern C</PATTERN/> may be replaced with an expression to specify
@@ -6674,7 +6674,8 @@
 
 =item tr///
 
-The transliteration operator.  Same as C<y///>.  See L<perlop>.
+The transliteration operator.  Same as C<y///>.  See
+L<perlop/"Quote and Quote-like Operators">.
 
 =item truncate FILEHANDLE,LENGTH
 X<truncate>
@@ -7432,6 +7433,7 @@
 
 =item y///
 
-The transliteration operator.  Same as C<tr///>.  See L<perlop>.
+The transliteration operator.  Same as C<tr///>.  See
+L<perlop/"Quote and Quote-like Operators">.
 
 =back
End of Patch.

Reply via email to