X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperldiag.pod;h=eeef207c14fab9712fe5708b64ac3b22917dce02;hb=53ae2428795d0b9d42a1657c22c5f1b557784379;hp=1b01b6b1b0d1670cb467b1f5370ad3f86e1b6365;hpb=2575c402a8f9be55f848bdfb219afbf912c50ac1;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 1b01b6b..eeef207 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -2836,6 +2836,20 @@ that isn't open. Check your control flow. See also L. (S internal) An internal warning that the grammar is screwed up. +=item Opening dirhandle %s also as a file + +(W io deprecated) You used open() to associate a filehandle to +a symbol (glob or scalar) that already holds a dirhandle. +Although legal, this idiom might render your code confusing +and is deprecated. + +=item Opening filehandle %s also as a directory + +(W io deprecated) You used opendir() to associate a dirhandle to +a symbol (glob or scalar) that already holds a filehandle. +Although legal, this idiom might render your code confusing +and is deprecated. + =item Operation "%s": no method found, %s (F) An attempt was made to perform an overloaded operation for which no @@ -4883,7 +4897,7 @@ minimum version. =item Warning: something's wrong (W) You passed warn() an empty string (the equivalent of C) or -you called it with no args and C<$_> was empty. +you called it with no args and C<$@> was empty. =item Warning: unable to close filehandle %s properly