diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1998-03-19 01:21:08 +0200 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-04-02 15:34:36 +0000 |
commit | 51fa4eeaa214f639610700d3b2aea14f2933be35 (patch) | |
tree | 7b7f7ed8fc6d436a71f4f79ad53a5502c0e94040 /pod | |
parent | dc45a647708b6c5442e1362e6b6e7a2583c30346 (diff) | |
download | perl-51fa4eeaa214f639610700d3b2aea14f2933be35.tar.gz |
5.004_63: further -e patching
p4raw-id: //depot/perl@846
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 25f3b68fce..77b714c9f2 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -693,18 +693,6 @@ to exist. (F) List assignment to %ENV is not supported on some systems, notably VMS. -=item Can't mkstemp() temporary file %s - -(F) The mkstemp() routine failed for some reason while trying to -process a B<-e> switch. Maybe your temporary file partition -is full, or over-protected, or clobbered. - -=item Can't mktemp() temporary file %s - -(F) The mktemp() routine failed for some reason while trying to -process a B<-e> switch. Maybe your temporary file partition -is full, or over-protected, or clobbered. - =item Can't modify %s in %s (F) You aren't allowed to assign to the item indicated, or otherwise try to @@ -901,16 +889,22 @@ a B<-e> switch. Maybe your /tmp partition is full, or clobbered. an assignment operator, which implies modifying the value itself. Perhaps you need to copy the value to a temporary, and repeat that. +=item Cannot create temporary file "%s" + +(F) A temporary file could not created for some reason while trying to +process a B<-e> switch. Maybe your temporary file partition is full, +or over-protected, or clobbered. + =item Cannot find an opnumber for "%s" (F) A string of a form C<CORE::word> was given to prototype(), but there is no builtin with the name C<word>. -=item Cannot open temporary file %s +=item Cannot generate temporary filename -(F) A temporary file could not created for some reason while trying to -process a B<-e> switch. Maybe your temporary file partition is full, -or over-protected, or clobbered. +(F) While trying to process a B<-e> switch, a filename for a temporary +file could not be generated. Maybe your temporary file partition is +full, or over-protected, or clobbered. =item Cannot resolve method `%s' overloading `%s' in package `%s' |