From: brian d foy Date: Sun, 27 Dec 2009 10:01:57 +0000 (+0100) Subject: * fix a perlop fix from debian: http://bugs.debian.org/514814 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5ef4d93ec97e5239010a45df06473288e04f739a;p=p5sagit%2Fp5-mst-13.2.git * fix a perlop fix from debian: bugs.debian.org/514814 The original said C<< > >> The italic is probably meant for "filehandle", which is a stand-in for a concrete filehandle. The italic should not apply to the syntax for the line input operator. The fix turned it inside out and brought back the ugly interior sequences: I< C< EfilehandleE > > It's much better without worrying about the italic face. --- diff --git a/pod/perlop.pod b/pod/perlop.pod index 40ea2c8..028c808 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -2183,8 +2183,8 @@ to terminate the loop, they should be tested for explicitly: while (($_ = ) ne '0') { ... } while () { last unless $_; ... } -In other boolean contexts, IfilehandleE>> without an -explicit C test or comparison elicit a warning if the +In other boolean contexts, C<< >> without an +explicit C test or comparison elicits a warning if the C pragma or the B<-w> command-line switch (the C<$^W> variable) is in effect.