From: Steve Peters Date: Fri, 14 Nov 2008 15:12:18 +0000 (+0000) Subject: Various patches added to RT #21568 from julian@mehnle.net. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9f4b9cd0c4bccfdc024ff1e990b924f2caa16454;p=p5sagit%2Fp5-mst-13.2.git Various patches added to RT #21568 from julian@mehnle.net. p4raw-id: //depot/perl@34834 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 8e321ef..e3d9b27 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -2855,7 +2855,7 @@ If EXPR is omitted, stats C<$_>. =item m// -The match operator. See L. +The match operator. See L. =item map BLOCK LIST X @@ -4776,7 +4776,7 @@ the C function of the L module. =item s/// -The substitution operator. See L. +The substitution operator. See L. =item say FILEHANDLE LIST X @@ -5521,7 +5521,7 @@ produces the list value 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 may be replaced with an expression to specify @@ -6674,7 +6674,8 @@ Note that times for children are included only after they terminate. =item tr/// -The transliteration operator. Same as C. See L. +The transliteration operator. Same as C. See +L. =item truncate FILEHANDLE,LENGTH X @@ -7432,6 +7433,7 @@ Note that write is I the opposite of C. Unfortunately. =item y/// -The transliteration operator. Same as C. See L. +The transliteration operator. Same as C. See +L. =back