From 5ef4d93ec97e5239010a45df06473288e04f739a Mon Sep 17 00:00:00 2001 From: brian d foy Date: Sun, 27 Dec 2009 11:01:57 +0100 Subject: [PATCH] * fix a perlop fix from debian: http://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. --- pod/perlop.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 2.7.4