summaryrefslogtreecommitdiff
path: root/pod/perldiag.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-08-02 13:27:38 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-02 13:27:38 +0000
commit624590503086714d933ceb5a7947b31f6a66beb9 (patch)
tree728e5bfdf9bc16cc89cd2153ea62eea69efcb15b /pod/perldiag.pod
parent436933950535d3942db23a87c1a6344f566a9af4 (diff)
downloadperl-624590503086714d933ceb5a7947b31f6a66beb9.tar.gz
The name of a filehandle does not have <these>.
p4raw-id: //depot/perl@6490
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r--pod/perldiag.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 4ccb671251..d6bf043a78 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -1064,7 +1064,7 @@ not realizing that 777 will be interpreted as a decimal number,
equivalent to 01411. Octal constants are introduced with a leading 0 in
Perl, as in C.
-=item Close on unopened file <%s>
+=item Close on unopened file %s
(W unopened) You tried to close a filehandle that was never opened.
@@ -2990,7 +2990,7 @@ unless there was a failure. You probably wanted to use system()
instead, which does return. To suppress this warning, put the exec() in
a block by itself.
-=item Stat on unopened file <%s>
+=item Stat on unopened file %s
(W unopened) You tried to use the stat() function (or an equivalent file
test) on a filehandle that was either never opened or has since been
@@ -3110,7 +3110,7 @@ for Perl to reach. Perl is doing you a favor by refusing.
(W unopened) You tried to use the tell() function on a filehandle that
was either never opened or has since been closed.
-=item Test on unopened file <%s>
+=item Test on unopened file %s
(W unopened) You tried to invoke a file test operator on a filehandle
that isn't open. Check your logic. See also L<perlfunc/-X>.