From: Nick Ing-Simmons Date: Fri, 15 May 1998 16:03:35 +0000 (+0000) Subject: Integrate win32 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=157a3d9a879b77013095b55ff0a0418b88f31771;p=p5sagit%2Fp5-mst-13.2.git Integrate win32 p4raw-id: //depot/ansiperl@987 --- 157a3d9a879b77013095b55ff0a0418b88f31771 diff --cc pod/perlop.pod index e8818f7,538745d..a634cea --- a/pod/perlop.pod +++ b/pod/perlop.pod @@@ -1078,6 -1084,6 +1084,15 @@@ If you really mean such values to termi tested for explcitly: while (($_ = ) ne '0') { ... } ++ while () { last unless $_; ... } ++ ++In other boolean contexts CIE> without explcit C ++test or comparison will solicit a warning if C<-w> is in effect. ++ ++If you really mean such values to terminate the loop they should be ++tested for explcitly: ++ ++ while (($_ = ) ne '0') { ... } while () { last unless $_; ... } In other boolean contexts CIE> without explcit C diff --cc utils/perldoc.PL index 80a721c,326da7a..60983b2 --- a/utils/perldoc.PL +++ b/utils/perldoc.PL @@@ -48,8 -48,9 +48,9 @@@ if(@ARGV<1) $me = $0; # Editing $0 is unportable $me =~ s,.*/,,; die <