diff options
author | brian d foy <bdfoy@cpan.org> | 2009-12-27 11:01:57 +0100 |
---|---|---|
committer | brian d foy <bdfoy@cpan.org> | 2009-12-27 17:41:48 +0100 |
commit | 5ef4d93ec97e5239010a45df06473288e04f739a (patch) | |
tree | 9aa07f2db37fbd62e0c7921c0f578555cf3cc58c /pod | |
parent | c670e63af2af3c154935c36a0c6fb77f614af0bd (diff) | |
download | perl-5ef4d93ec97e5239010a45df06473288e04f739a.tar.gz |
* fix a perlop fix from debian: http://bugs.debian.org/514814
The original said
C<< <I<filehandle>> >>
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< E<lt>filehandleE<gt> > >
It's much better without worrying about the italic face.
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlop.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 40ea2c8e9c..028c808160 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -2183,8 +2183,8 @@ to terminate the loop, they should be tested for explicitly: while (($_ = <STDIN>) ne '0') { ... } while (<STDIN>) { last unless $_; ... } -In other boolean contexts, I<C<E<lt>filehandleE<gt>>> without an -explicit C<defined> test or comparison elicit a warning if the +In other boolean contexts, C<< <filehandle> >> without an +explicit C<defined> test or comparison elicits a warning if the C<use warnings> pragma or the B<-w> command-line switch (the C<$^W> variable) is in effect. |