Patch for perl.pod
[p5sagit/p5-mst-13.2.git] / pod / perldiag.pod
CommitLineData
a0d0e21e 1=head1 NAME
2
3perldiag - various Perl diagnostics
4
5=head1 DESCRIPTION
6
7These messages are classified as follows (listed in increasing order of
8desperation):
9
10 (W) A warning (optional).
11 (D) A deprecation (optional).
12 (S) A severe warning (mandatory).
13 (F) A fatal error (trappable).
14 (P) An internal error you should never see (trappable).
15 (X) A very fatal error (non-trappable).
cb1a09d0 16 (A) An alien error message (not generated by Perl).
a0d0e21e 17
748a9306 18Optional warnings are enabled by using the B<-w> switch. Warnings may
68dc0745 19be captured by setting C<$SIG{__WARN__}> to a reference to a routine that
20will be called on each warning instead of printing it. See L<perlvar>.
748a9306 21Trappable errors may be trapped using the eval operator. See
22L<perlfunc/eval>.
a0d0e21e 23
24Some of these messages are generic. Spots that vary are denoted with a %s,
2ba9eb46 25just as in a printf format. Note that some messages start with a %s!
a0d0e21e 26The symbols C<"%-?@> sort before the letters, while C<[> and C<\> sort after.
27
28=over 4
29
30=item "my" variable %s can't be in a package
31
32(F) Lexically scoped variables aren't in a package, so it doesn't make sense
33to try to declare one with a package qualifier on the front. Use local()
34if you want to localize a package variable.
35
2ba9eb46 36=item "my" variable %s masks earlier declaration in same scope
37
38(S) A lexical variable has been redeclared in the same scope, effectively
39eliminating all access to the previous instance. This is almost always
8b1a09fc 40a typographical error. Note that the earlier variable will still exist
2ba9eb46 41until the end of the scope or until all closure referents to it are
42destroyed.
43
a0d0e21e 44=item "no" not allowed in expression
45
46(F) The "no" keyword is recognized and executed at compile time, and returns
47no useful value. See L<perlmod>.
48
49=item "use" not allowed in expression
50
51(F) The "use" keyword is recognized and executed at compile time, and returns
52no useful value. See L<perlmod>.
53
54=item % may only be used in unpack
55
5f05dabc 56(F) You can't pack a string by supplying a checksum, because the
a0d0e21e 57checksumming process loses information, and you can't go the other
58way. See L<perlfunc/unpack>.
59
60=item %s (...) interpreted as function
61
62(W) You've run afoul of the rule that says that any list operator followed
8b1a09fc 63by parentheses turns into a function, with all the list operators arguments
5f05dabc 64found inside the parentheses. See L<perlop/Terms and List Operators (Leftward)>.
a0d0e21e 65
66=item %s argument is not a HASH element
67
5f05dabc 68(F) The argument to exists() must be a hash element, such as
a0d0e21e 69
70 $foo{$bar}
71 $ref->[12]->{"susie"}
72
5f05dabc 73=item %s argument is not a HASH element or slice
74
75(F) The argument to delete() must be either a hash element, such as
76
77 $foo{$bar}
78 $ref->[12]->{"susie"}
79
80or a hash slice, such as
81
82 @foo{$bar, $baz, $xyzzy}
83 @{$ref->[12]}{"susie", "queue"}
84
a0d0e21e 85=item %s did not return a true value
86
87(F) A required (or used) file must return a true value to indicate that
88it compiled correctly and ran its initialization code correctly. It's
89traditional to end such a file with a "1;", though any true value would
90do. See L<perlfunc/require>.
91
92=item %s found where operator expected
93
94(S) The Perl lexer knows whether to expect a term or an operator. If it
95sees what it knows to be a term when it was expecting to see an operator,
96it gives you this warning. Usually it indicates that an operator or
97delimiter was omitted, such as a semicolon.
98
f86702cc 99=item %s had compilation errors
a0d0e21e 100
101(F) The final summary message when a C<perl -c> fails.
102
f86702cc 103=item %s has too many errors
a0d0e21e 104
105(F) The parser has given up trying to parse the program after 10 errors.
106Further error messages would likely be uninformative.
107
108=item %s matches null string many times
109
110(W) The pattern you've specified would be an infinite loop if the
111regular expression engine didn't specifically check for that. See L<perlre>.
112
113=item %s never introduced
114
115(S) The symbol in question was declared but somehow went out of scope
116before it could possibly have been used.
117
118=item %s syntax OK
119
120(F) The final summary message when a C<perl -c> succeeds.
121
f86702cc 122=item %s: Command not found
cb1a09d0 123
124(A) You've accidentally run your script through B<csh> instead
3a52c276 125of Perl. Check the #! line, or manually feed your script into
126Perl yourself.
cb1a09d0 127
f86702cc 128=item %s: Expression syntax
cb1a09d0 129
130(A) You've accidentally run your script through B<csh> instead
3a52c276 131of Perl. Check the #! line, or manually feed your script into
132Perl yourself.
cb1a09d0 133
f86702cc 134=item %s: Undefined variable
cb1a09d0 135
136(A) You've accidentally run your script through B<csh> instead
3a52c276 137of Perl. Check the #! line, or manually feed your script into
138Perl yourself.
cb1a09d0 139
140=item %s: not found
141
8b1a09fc 142(A) You've accidentally run your script through the Bourne shell
3a52c276 143instead of Perl. Check the #! line, or manually feed your script
cb1a09d0 144into Perl yourself.
145
a0d0e21e 146=item B<-P> not allowed for setuid/setgid script
147
148(F) The script would have to be opened by the C preprocessor by name,
149which provides a race condition that breaks security.
150
151=item C<-T> and C<-B> not implemented on filehandles
152
153(F) Perl can't peek at the stdio buffer of filehandles when it doesn't
154know about your kind of stdio. You'll have to use a filename instead.
155
a5f75d66 156=item 500 Server error
157
158See Server error.
159
a0d0e21e 160=item ?+* follows nothing in regexp
161
162(F) You started a regular expression with a quantifier. Backslash it
163if you meant it literally. See L<perlre>.
164
165=item @ outside of string
166
2ba9eb46 167(F) You had a pack template that specified an absolute position outside
a0d0e21e 168the string being unpacked. See L<perlfunc/pack>.
169
170=item accept() on closed fd
171
172(W) You tried to do an accept on a closed socket. Did you forget to check
173the return value of your socket() call? See L<perlfunc/accept>.
174
175=item Allocation too large: %lx
176
55497cff 177(X) You can't allocate more than 64K on an MSDOS machine.
178
179=item Allocation too large
180
181(F) You can't allocate more than 2^31+"small amount" bytes.
a0d0e21e 182
2ae324a7 183=item Applying %s to %s will act on scalar(%s)
184
185(W) The pattern match (//), substitution (s///), and translation (tr///)
186operators work on scalar values. If you apply one of them to an array
187or a hash, it will convert the array or hash to a scalar value -- the
188length of an array, or the population info of a hash -- and then work on
189that scalar value. This is probably not what you meant to do. See
190L<perlfunc/grep> and L<perlfunc/map> for alternatives.
191
a0d0e21e 192=item Arg too short for msgsnd
193
194(F) msgsnd() requires a string at least as long as sizeof(long).
195
748a9306 196=item Ambiguous use of %s resolved as %s
197
198(W)(S) You said something that may not be interpreted the way
199you thought. Normally it's pretty easy to disambiguate it by supplying
5f05dabc 200a missing quote, operator, parenthesis pair or declaration.
748a9306 201
a0d0e21e 202=item Args must match #! line
203
204(F) The setuid emulator requires that the arguments Perl was invoked
3a52c276 205with match the arguments specified on the #! line. Since some systems
206impose a one-argument limit on the #! line, try combining switches;
207for example, turn C<-w -U> into C<-wU>.
a0d0e21e 208
f86702cc 209=item Argument "%s" isn't numeric%s
a0d0e21e 210
211(W) The indicated string was fed as an argument to an operator that
212expected a numeric value instead. If you're fortunate the message
213will identify which operator was so unfortunate.
214
215=item Array @%s missing the @ in argument %d of %s()
216
217(D) Really old Perl let you omit the @ on array names in some spots. This
218is now heavily deprecated.
219
220=item assertion botched: %s
221
222(P) The malloc package that comes with Perl had an internal failure.
223
224=item Assertion failed: file "%s"
225
226(P) A general assertion failed. The file in question must be examined.
227
228=item Assignment to both a list and a scalar
229
230(F) If you assign to a conditional operator, the 2nd and 3rd arguments
231must either both be scalars or both be lists. Otherwise Perl won't
232know which context to supply to the right side.
233
234=item Attempt to free non-arena SV: 0x%lx
235
236(P) All SV objects are supposed to be allocated from arenas that will
237be garbage collected on exit. An SV was discovered to be outside any
238of those arenas.
239
bbce6d69 240=item Attempt to free non-existent shared string
241
242(P) Perl maintains a reference counted internal table of strings to
243optimize the storage and access of hash keys and other strings. This
244indicates someone tried to decrement the reference count of a string
245that can no longer be found in the table.
246
a0d0e21e 247=item Attempt to free temp prematurely
248
249(W) Mortalized values are supposed to be freed by the free_tmps()
250routine. This indicates that something else is freeing the SV before
251the free_tmps() routine gets a chance, which means that the free_tmps()
252routine will be freeing an unreferenced scalar when it does try to free
253it.
254
255=item Attempt to free unreferenced glob pointers
256
257(P) The reference counts got screwed up on symbol aliases.
258
259=item Attempt to free unreferenced scalar
260
261(W) Perl went to decrement the reference count of a scalar to see if it
262would go to 0, and discovered that it had already gone to 0 earlier,
263and should have been freed, and in fact, probably was freed. This
264could indicate that SvREFCNT_dec() was called too many times, or that
265SvREFCNT_inc() was called too few times, or that the SV was mortalized
266when it shouldn't have been, or that memory has been corrupted.
267
b7a902f4 268=item Attempt to use reference as lvalue in substr
269
270(W) You supplied a reference as the first argument to substr() used
8b1a09fc 271as an lvalue, which is pretty strange. Perhaps you forgot to
b7a902f4 272dereference it first. See L<perlfunc/substr>.
273
a0d0e21e 274=item Bad arg length for %s, is %d, should be %d
275
276(F) You passed a buffer of the wrong size to one of msgctl(), semctl() or
2ba9eb46 277shmctl(). In C parlance, the correct sizes are, respectively,
5f05dabc 278S<sizeof(struct msqid_ds *)>, S<sizeof(struct semid_ds *)>, and
a0d0e21e 279S<sizeof(struct shmid_ds *)>.
280
a0d0e21e 281=item Bad filehandle: %s
282
283(F) A symbol was passed to something wanting a filehandle, but the symbol
284has no filehandle associated with it. Perhaps you didn't do an open(), or
285did it in another package.
286
287=item Bad free() ignored
288
289(S) An internal routine called free() on something that had never been
33c8a3fe 290malloc()ed in the first place. Mandatory, but can be disabled by
291setting environment variable C<PERL_BADFREE> to 1.
292
293This message can be quite often seen with DB_File on systems with
294"hard" dynamic linking, like C<AIX> and C<OS/2>. It is a bug of
295C<Berkeley DB> which is left unnoticed if C<DB> uses I<forgiving>
296system malloc().
a0d0e21e 297
aa689395 298=item Bad hash
299
300(P) One of the internal hash routines was passed a null HV pointer.
301
a0d0e21e 302=item Bad name after %s::
303
304(F) You started to name a symbol by using a package prefix, and then didn't
305finish the symbol. In particular, you can't interpolate outside of quotes,
306so
307
308 $var = 'myvar';
309 $sym = mypack::$var;
310
311is not the same as
312
313 $var = 'myvar';
314 $sym = "mypack::$var";
315
316=item Bad symbol for array
317
318(P) An internal request asked to add an array entry to something that
319wasn't a symbol table entry.
320
321=item Bad symbol for filehandle
322
323(P) An internal request asked to add a filehandle entry to something that
324wasn't a symbol table entry.
325
326=item Bad symbol for hash
327
328(P) An internal request asked to add a hash entry to something that
329wasn't a symbol table entry.
330
8b1a09fc 331=item Badly placed ()'s
cb1a09d0 332
333(A) You've accidentally run your script through B<csh> instead
3a52c276 334of Perl. Check the #! line, or manually feed your script into
335Perl yourself.
cb1a09d0 336
3fe9a6f1 337=item Bareword "%s" not allowed while "strict subs" in use
338
339(F) With "strict subs" in use, a bareword is only allowed as a
340subroutine identifier, in curly braces or to the left of the "=>" symbol.
341Perhaps you need to pre-declare a subroutine?
342
a0d0e21e 343=item BEGIN failed--compilation aborted
344
345(F) An untrapped exception was raised while executing a BEGIN subroutine.
346Compilation stops immediately and the interpreter is exited.
347
68dc0745 348=item BEGIN not safe after errors--compilation aborted
349
350(F) Perl found a C<BEGIN {}> subroutine (or a C<use> directive, which
351implies a C<BEGIN {}>) after one or more compilation errors had
352already occurred. Since the intended environment for the C<BEGIN {}>
353could not be guaranteed (due to the errors), and since subsequent code
354likely depends on its correct operation, Perl just gave up.
355
a0d0e21e 356=item bind() on closed fd
357
358(W) You tried to do a bind on a closed socket. Did you forget to check
359the return value of your socket() call? See L<perlfunc/bind>.
360
4633a7c4 361=item Bizarre copy of %s in %s
362
363(P) Perl detected an attempt to copy an internal value that is not copiable.
364
a0d0e21e 365=item Callback called exit
366
367(F) A subroutine invoked from an external package via perl_call_sv()
368exited by calling exit.
369
0a753a76 370=item Can't "goto" outside a block
371
372(F) A "goto" statement was executed to jump out of what might look
373like a block, except that it isn't a proper block. This usually
374occurs if you tried to jump out of a sort() block or subroutine, which
375is a no-no. See L<perlfunc/goto>.
376
a0d0e21e 377=item Can't "last" outside a block
378
379(F) A "last" statement was executed to break out of the current block,
380except that there's this itty bitty problem called there isn't a
381current block. Note that an "if" or "else" block doesn't count as a
0a753a76 382"loopish" block, as doesn't a block given to sort(). You can usually double
383the curlies to get the same effect though, because the inner curlies
384will be considered a block that loops once. See L<perlfunc/last>.
a0d0e21e 385
386=item Can't "next" outside a block
387
388(F) A "next" statement was executed to reiterate the current block, but
389there isn't a current block. Note that an "if" or "else" block doesn't
0a753a76 390count as a "loopish" block, as doesn't a block given to sort(). You can
391usually double the curlies to get the same effect though, because the inner
392curlies will be considered a block that loops once. See L<perlfunc/last>.
a0d0e21e 393
394=item Can't "redo" outside a block
395
396(F) A "redo" statement was executed to restart the current block, but
397there isn't a current block. Note that an "if" or "else" block doesn't
0a753a76 398count as a "loopish" block, as doesn't a block given to sort(). You can
399usually double the curlies to get the same effect though, because the inner
400curlies will be considered a block that loops once. See L<perlfunc/last>.
a0d0e21e 401
402=item Can't bless non-reference value
403
404(F) Only hard references may be blessed. This is how Perl "enforces"
405encapsulation of objects. See L<perlobj>.
406
407=item Can't break at that line
408
409(S) A warning intended for while running within the debugger, indicating
410the line number specified wasn't the location of a statement that could
411be stopped at.
412
413=item Can't call method "%s" in empty package "%s"
414
415(F) You called a method correctly, and it correctly indicated a package
416functioning as a class, but that package doesn't have ANYTHING defined
417in it, let alone methods. See L<perlobj>.
418
419=item Can't call method "%s" on unblessed reference
420
421(F) A method call must know what package it's supposed to run in. It
422ordinarily finds this out from the object reference you supply, but
423you didn't supply an object reference in this case. A reference isn't
424an object reference until it has been blessed. See L<perlobj>.
425
426=item Can't call method "%s" without a package or object reference
427
428(F) You used the syntax of a method call, but the slot filled by the
429object reference or package name contains an expression that returns
430neither an object reference nor a package name. (Perhaps it's null?)
431Something like this will reproduce the error:
432
433 $BADREF = undef;
434 process $BADREF 1,2,3;
435 $BADREF->process(1,2,3);
436
437=item Can't chdir to %s
438
439(F) You called C<perl -x/foo/bar>, but C</foo/bar> is not a directory
440that you can chdir to, possibly because it doesn't exist.
441
442=item Can't coerce %s to integer in %s
443
444(F) Certain types of SVs, in particular real symbol table entries
55497cff 445(typeglobs), can't be forced to stop being what they are. So you can't
a0d0e21e 446say things like:
447
448 *foo += 1;
449
450You CAN say
451
452 $foo = *foo;
453 $foo += 1;
454
455but then $foo no longer contains a glob.
456
457=item Can't coerce %s to number in %s
458
459(F) Certain types of SVs, in particular real symbol table entries
55497cff 460(typeglobs), can't be forced to stop being what they are.
a0d0e21e 461
462=item Can't coerce %s to string in %s
463
464(F) Certain types of SVs, in particular real symbol table entries
55497cff 465(typeglobs), can't be forced to stop being what they are.
a0d0e21e 466
467=item Can't create pipe mailbox
468
748a9306 469(P) An error peculiar to VMS. The process is suffering from exhausted quotas
470or other plumbing problems.
a0d0e21e 471
472=item Can't declare %s in my
473
5f05dabc 474(F) Only scalar, array, and hash variables may be declared as lexical variables.
a0d0e21e 475They must have ordinary identifiers as names.
476
477=item Can't do inplace edit on %s: %s
478
479(S) The creation of the new file failed for the indicated reason.
480
5f05dabc 481=item Can't do in-place edit without backup
a0d0e21e 482
483(F) You're on a system such as MSDOS that gets confused if you try reading
3fe9a6f1 484from a deleted (but still opened) file. You have to say C<-i.bak>, or some
a0d0e21e 485such.
486
8b1a09fc 487=item Can't do inplace edit: %s E<gt> 14 characters
a0d0e21e 488
489(S) There isn't enough room in the filename to make a backup name for the file.
490
491=item Can't do inplace edit: %s is not a regular file
492
493(S) You tried to use the B<-i> switch on a special file, such as a file in
494/dev, or a FIFO. The file was ignored.
495
496=item Can't do setegid!
497
498(P) The setegid() call failed for some reason in the setuid emulator
499of suidperl.
500
501=item Can't do seteuid!
502
503(P) The setuid emulator of suidperl failed for some reason.
504
505=item Can't do setuid
506
507(F) This typically means that ordinary perl tried to exec suidperl to
508do setuid emulation, but couldn't exec it. It looks for a name of the
509form sperl5.000 in the same directory that the perl executable resides
510under the name perl5.000, typically /usr/local/bin on Unix machines.
511If the file is there, check the execute permissions. If it isn't, ask
512your sysadmin why he and/or she removed it.
513
514=item Can't do waitpid with flags
515
516(F) This machine doesn't have either waitpid() or wait4(), so only waitpid()
517without flags is emulated.
518
8b1a09fc 519=item Can't do {n,m} with n E<gt> m
a0d0e21e 520
521(F) Minima must be less than or equal to maxima. If you really want
522your regexp to match something 0 times, just put {0}. See L<perlre>.
523
524=item Can't emulate -%s on #! line
525
526(F) The #! line specifies a switch that doesn't make sense at this point.
527For example, it'd be kind of silly to put a B<-x> on the #! line.
528
529=item Can't exec "%s": %s
530
5f05dabc 531(W) An system(), exec(), or piped open call could not execute the named
a0d0e21e 532program for the indicated reason. Typical reasons include: the permissions
533were wrong on the file, the file wasn't found in C<$ENV{PATH}>, the
534executable in question was compiled for another architecture, or the
535#! line in a script points to an interpreter that can't be run for
536similar reasons. (Or maybe your system doesn't support #! at all.)
537
538=item Can't exec %s
539
540(F) Perl was trying to execute the indicated program for you because that's
541what the #! line said. If that's not what you wanted, you may need to
542mention "perl" on the #! line somewhere.
543
544=item Can't execute %s
545
546(F) You used the B<-S> switch, but the script to execute could not be found
547in the PATH, or at least not with the correct permissions.
548
549=item Can't find label %s
550
551(F) You said to goto a label that isn't mentioned anywhere that it's possible
552for us to go to. See L<perlfunc/goto>.
553
554=item Can't find string terminator %s anywhere before EOF
555
556(F) Perl strings can stretch over multiple lines. This message means that
5f05dabc 557the closing delimiter was omitted. Because bracketed quotes count nesting
a0d0e21e 558levels, the following is missing its final parenthesis:
559
560 print q(The character '(' starts a side comment.)
561
562=item Can't fork
563
564(F) A fatal error occurred while trying to fork while opening a pipeline.
565
33c8a3fe 566=item Unsupported function fork
567
568(F) Your version of executable does not support forking.
569
570Note that under some systems, like OS/2, there may be different flavors of
571Perl executables, some of which may support fork, some not. Try changing
572the name you call Perl by to C<perl_>, C<perl__>, and so on.
573
748a9306 574=item Can't get filespec - stale stat buffer?
575
576(S) A warning peculiar to VMS. This arises because of the difference between
577access checks under VMS and under the Unix model Perl assumes. Under VMS,
578access checks are done by filename, rather than by bits in the stat buffer, so
579that ACLs and other protections can be taken into account. Unfortunately, Perl
580assumes that the stat buffer contains all the necessary information, and passes
581it, instead of the filespec, to the access checking routine. It will try to
582retrieve the filespec using the device name and FID present in the stat buffer,
583but this works only if you haven't made a subsequent call to the CRTL stat()
5f05dabc 584routine, because the device name is overwritten with each call. If this warning
748a9306 585appears, the name lookup failed, and the access checking routine gave up and
586returned FALSE, just to be conservative. (Note: The access checking routine
587knows about the Perl C<stat> operator and file tests, so you shouldn't ever
588see this warning in response to a Perl command; it arises only if some internal
589code takes stat buffers lightly.)
590
a0d0e21e 591=item Can't get pipe mailbox device name
592
748a9306 593(P) An error peculiar to VMS. After creating a mailbox to act as a pipe, Perl
594can't retrieve its name for later use.
a0d0e21e 595
596=item Can't get SYSGEN parameter value for MAXBUF
597
748a9306 598(P) An error peculiar to VMS. Perl asked $GETSYI how big you want your
599mailbox buffers to be, and didn't get an answer.
a0d0e21e 600
601=item Can't goto subroutine outside a subroutine
602
603(F) The deeply magical "goto subroutine" call can only replace one subroutine
604call for another. It can't manufacture one out of whole cloth. In general
5f05dabc 605you should be calling it out of only an AUTOLOAD routine anyway. See
a0d0e21e 606L<perlfunc/goto>.
607
4633a7c4 608=item Can't localize a reference
609
610(F) You said something like C<local $$ref>, which is not allowed because
611the compiler can't determine whether $ref will end up pointing to anything
612with a symbol table entry, and a symbol table entry is necessary to
613do a local.
614
748a9306 615=item Can't localize lexical variable %s
616
2ba9eb46 617(F) You used local on a variable name that was previously declared as a
748a9306 618lexical variable using "my". This is not allowed. If you want to
619localize a package variable of the same name, qualify it with the
620package name.
621
a0d0e21e 622=item Can't locate %s in @INC
623
624(F) You said to do (or require, or use) a file that couldn't be found
625in any of the libraries mentioned in @INC. Perhaps you need to set
626the PERL5LIB environment variable to say where the extra library is,
627or maybe the script needs to add the library name to @INC. Or maybe
628you just misspelled the name of the file. See L<perlfunc/require>.
629
630=item Can't locate object method "%s" via package "%s"
631
632(F) You called a method correctly, and it correctly indicated a package
633functioning as a class, but that package doesn't define that particular
2ba9eb46 634method, nor does any of its base classes. See L<perlobj>.
a0d0e21e 635
636=item Can't locate package %s for @%s::ISA
637
638(W) The @ISA array contained the name of another package that doesn't seem
639to exist.
640
641=item Can't mktemp()
642
643(F) The mktemp() routine failed for some reason while trying to process
644a B<-e> switch. Maybe your /tmp partition is full, or clobbered.
645
646=item Can't modify %s in %s
647
648(F) You aren't allowed to assign to the item indicated, or otherwise try to
5f05dabc 649change it, such as with an auto-increment.
a0d0e21e 650
651=item Can't modify non-existent substring
652
653(P) The internal routine that does assignment to a substr() was handed
654a NULL.
655
5f05dabc 656=item Can't msgrcv to read-only var
a0d0e21e 657
5f05dabc 658(F) The target of a msgrcv must be modifiable to be used as a receive
a0d0e21e 659buffer.
660
661=item Can't open %s: %s
662
68dc0745 663(S) An in-place edit couldn't open the original file for the indicated reason.
a0d0e21e 664Usually this is because you don't have read permission for the file.
665
666=item Can't open bidirectional pipe
667
668(W) You tried to say C<open(CMD, "|cmd|")>, which is not supported. You can
669try any of several modules in the Perl library to do this, such as
7e1af8bc 670IPC::Open2. Alternately, direct the pipe's output to a file using "E<gt>",
a0d0e21e 671and then read it in under a different file handle.
672
748a9306 673=item Can't open error file %s as stderr
674
675(F) An error peculiar to VMS. Perl does its own command line redirection, and
8b1a09fc 676couldn't open the file specified after '2E<gt>' or '2E<gt>E<gt>' on the
677command line for writing.
748a9306 678
679=item Can't open input file %s as stdin
680
681(F) An error peculiar to VMS. Perl does its own command line redirection, and
8b1a09fc 682couldn't open the file specified after 'E<lt>' on the command line for reading.
748a9306 683
684=item Can't open output file %s as stdout
685
686(F) An error peculiar to VMS. Perl does its own command line redirection, and
8b1a09fc 687couldn't open the file specified after 'E<gt>' or 'E<gt>E<gt>' on the command
688line for writing.
748a9306 689
690=item Can't open output pipe (name: %s)
691
692(P) An error peculiar to VMS. Perl does its own command line redirection, and
693couldn't open the pipe into which to send data destined for stdout.
694
a0d0e21e 695=item Can't open perl script "%s": %s
696
697(F) The script you specified can't be opened for the indicated reason.
698
699=item Can't rename %s to %s: %s, skipping file
700
701(S) The rename done by the B<-i> switch failed for some reason, probably because
702you don't have write permission to the directory.
703
748a9306 704=item Can't reopen input pipe (name: %s) in binary mode
705
706(P) An error peculiar to VMS. Perl thought stdin was a pipe, and tried to
707reopen it to accept binary data. Alas, it failed.
708
a0d0e21e 709=item Can't reswap uid and euid
710
711(P) The setreuid() call failed for some reason in the setuid emulator
712of suidperl.
713
714=item Can't return outside a subroutine
715
716(F) The return statement was executed in mainline code, that is, where
717there was no subroutine call to return out of. See L<perlsub>.
718
719=item Can't stat script "%s"
720
721(P) For some reason you can't fstat() the script even though you have
722it open already. Bizarre.
723
724=item Can't swap uid and euid
725
726(P) The setreuid() call failed for some reason in the setuid emulator
727of suidperl.
728
729=item Can't take log of %g
730
5f05dabc 731(F) Logarithms are defined on only positive real numbers.
a0d0e21e 732
733=item Can't take sqrt of %g
734
735(F) For ordinary real numbers, you can't take the square root of a
736negative number. There's a Complex package available for Perl, though,
737if you really want to do that.
738
739=item Can't undef active subroutine
740
741(F) You can't undefine a routine that's currently running. You can,
742however, redefine it while it's running, and you can even undef the
743redefined subroutine while the old routine is running. Go figure.
744
745=item Can't unshift
746
747(F) You tried to unshift an "unreal" array that can't be unshifted, such
748as the main Perl stack.
749
750=item Can't upgrade that kind of scalar
751
752(P) The internal sv_upgrade routine adds "members" to an SV, making
753it into a more specialized kind of SV. The top several SV types are
754so specialized, however, that they cannot be interconverted. This
755message indicates that such a conversion was attempted.
756
757=item Can't upgrade to undef
758
759(P) The undefined SV is the bottom of the totem pole, in the scheme
760of upgradability. Upgrading to undef indicates an error in the
761code calling sv_upgrade.
762
c07a80fd 763=item Can't use "my %s" in sort comparison
764
765(F) The global variables $a and $b are reserved for sort comparisons.
8b1a09fc 766You mentioned $a or $b in the same line as the E<lt>=E<gt> or cmp operator,
c07a80fd 767and the variable had earlier been declared as a lexical variable.
768Either qualify the sort variable with the package name, or rename the
769lexical variable.
770
a0d0e21e 771=item Can't use %s for loop variable
772
773(F) Only a simple scalar variable may be used as a loop variable on a foreach.
774
775=item Can't use %s ref as %s ref
776
777(F) You've mixed up your reference types. You have to dereference a
778reference of the type needed. You can use the ref() function to
779test the type of the reference, if need be.
780
748a9306 781=item Can't use \1 to mean $1 in expression
782
783(W) In an ordinary expression, backslash is a unary operator that creates
784a reference to its argument. The use of backslash to indicate a backreference
5f05dabc 785to a matched substring is valid only as part of a regular expression pattern.
748a9306 786Trying to do this in ordinary Perl code produces a value that prints
787out looking like SCALAR(0xdecaf). Use the $1 form instead.
788
44a8e56a 789=item Can't use bareword ("%s") as %s ref while \"strict refs\" in use
790
791(F) Only hard references are allowed by "strict refs". Symbolic references
792are disallowed. See L<perlref>.
793
748a9306 794=item Can't use string ("%s") as %s ref while "strict refs" in use
a0d0e21e 795
796(F) Only hard references are allowed by "strict refs". Symbolic references
797are disallowed. See L<perlref>.
798
799=item Can't use an undefined value as %s reference
800
801(F) A value used as either a hard reference or a symbolic reference must
802be a defined value. This helps to de-lurk some insidious errors.
803
a0d0e21e 804=item Can't use global %s in "my"
805
806(F) You tried to declare a magical variable as a lexical variable. This is
5f05dabc 807not allowed, because the magic can be tied to only one location (namely
a0d0e21e 808the global variable) and it would be incredibly confusing to have
809variables in your program that looked like magical variables but
810weren't.
811
748a9306 812=item Can't use subscript on %s
813
814(F) The compiler tried to interpret a bracketed expression as a
815subscript. But to the left of the brackets was an expression that
816didn't look like an array reference, or anything else subscriptable.
817
a0d0e21e 818=item Can't write to temp file for B<-e>: %s
819
820(F) The write routine failed for some reason while trying to process
821a B<-e> switch. Maybe your /tmp partition is full, or clobbered.
822
5f05dabc 823=item Can't x= to read-only value
a0d0e21e 824
825(F) You tried to repeat a constant value (often the undefined value) with
826an assignment operator, which implies modifying the value itself.
827Perhaps you need to copy the value to a temporary, and repeat that.
828
829=item Cannot open temporary file
830
8b1a09fc 831(F) The create routine failed for some reason while trying to process
a0d0e21e 832a B<-e> switch. Maybe your /tmp partition is full, or clobbered.
833
e7ea3e70 834=item Cannot resolve method `%s' overloading `%s' in package `%s'
835
836(F|P) Error resolving overloading specified by a method name (as
837opposed to a subroutine reference): no such method callable via the
838package. If method name is C<???>, this is an internal error.
839
a0d0e21e 840=item chmod: mode argument is missing initial 0
841
842(W) A novice will sometimes say
843
844 chmod 777, $filename
845
846not realizing that 777 will be interpreted as a decimal number, equivalent
847to 01411. Octal constants are introduced with a leading 0 in Perl, as in C.
848
8b1a09fc 849=item Close on unopened file E<lt>%sE<gt>
a0d0e21e 850
851(W) You tried to close a filehandle that was never opened.
852
853=item connect() on closed fd
854
855(W) You tried to do a connect on a closed socket. Did you forget to check
856the return value of your socket() call? See L<perlfunc/connect>.
857
4cee8e80 858=item Constant subroutine %s redefined
859
860(S) You redefined a subroutine which had previously been eligible for
861inlining. See L<perlsub/"Constant Functions"> for commentary and
862workarounds.
863
9607fc9c 864=item Constant subroutine %s undefined
865
866(S) You undefined a subroutine which had previously been eligible for
867inlining. See L<perlsub/"Constant Functions"> for commentary and
868workarounds.
869
e7ea3e70 870=item Copy method did not return a reference
871
872(F) The method which overloads "=" is buggy. See L<overload/Copy Constructor>.
873
a0d0e21e 874=item Corrupt malloc ptr 0x%lx at 0x%lx
875
876(P) The malloc package that comes with Perl had an internal failure.
877
878=item corrupted regexp pointers
879
880(P) The regular expression engine got confused by what the regular
881expression compiler gave it.
882
883=item corrupted regexp program
884
885(P) The regular expression engine got passed a regexp program without
886a valid magic number.
887
888=item Deep recursion on subroutine "%s"
889
890(W) This subroutine has called itself (directly or indirectly) 100
891times than it has returned. This probably indicates an infinite
892recursion, unless you're writing strange benchmark programs, in which
893case it indicates something else.
894
4633a7c4 895=item Did you mean &%s instead?
896
897(W) You probably referred to an imported subroutine &FOO as $FOO or some such.
898
748a9306 899=item Did you mean $ or @ instead of %?
a0d0e21e 900
748a9306 901(W) You probably said %hash{$key} when you meant $hash{$key} or @hash{@keys}.
902On the other hand, maybe you just meant %hash and got carried away.
903
7e1af8bc 904=item Died
5f05dabc 905
906(F) You passed die() an empty string (the equivalent of C<die "">) or
907you called it with no args and both C<$@> and C<$_> were empty.
908
909=item Do you need to pre-declare %s?
748a9306 910
911(S) This is an educated guess made in conjunction with the message "%s
912found where operator expected". It often means a subroutine or module
913name is being referenced that hasn't been declared yet. This may be
914because of ordering problems in your file, or because of a missing
915"sub", "package", "require", or "use" statement. If you're
916referencing something that isn't defined yet, you don't actually have
917to define the subroutine or package before the current location. You
918can use an empty "sub foo;" or "package FOO;" to enter a "forward"
919declaration.
a0d0e21e 920
921=item Don't know how to handle magic of type '%s'
922
923(P) The internal handling of magical variables has been cursed.
924
925=item do_study: out of memory
926
927(P) This should have been caught by safemalloc() instead.
928
929=item Duplicate free() ignored
930
931(S) An internal routine called free() on something that had already
932been freed.
933
4633a7c4 934=item elseif should be elsif
935
936(S) There is no keyword "elseif" in Perl because Larry thinks it's
937ugly. Your code will be interpreted as an attempt to call a method
938named "elseif" for the class returned by the following block. This is
939unlikely to be what you want.
940
a0d0e21e 941=item END failed--cleanup aborted
942
943(F) An untrapped exception was raised while executing an END subroutine.
944The interpreter is immediately exited.
945
748a9306 946=item Error converting file specification %s
947
5f05dabc 948(F) An error peculiar to VMS. Because Perl may have to deal with file
748a9306 949specifications in either VMS or Unix syntax, it converts them to a
950single form when it must operate on them directly. Either you've
951passed an invalid file specification to Perl, or you've found a
952case the conversion routines don't handle. Drat.
953
f86702cc 954=item Execution of %s aborted due to compilation errors
a0d0e21e 955
956(F) The final summary message when a Perl compilation fails.
957
958=item Exiting eval via %s
959
8b1a09fc 960(W) You are exiting an eval by unconventional means, such as
a0d0e21e 961a goto, or a loop control statement.
962
0a753a76 963=item Exiting pseudo-block via %s
964
965(W) You are exiting a rather special block construct (like a sort block or
966subroutine) by unconventional means, such as a goto, or a loop control
967statement. See L<perlfunc/sort>.
968
a0d0e21e 969=item Exiting subroutine via %s
970
8b1a09fc 971(W) You are exiting a subroutine by unconventional means, such as
a0d0e21e 972a goto, or a loop control statement.
973
974=item Exiting substitution via %s
975
8b1a09fc 976(W) You are exiting a substitution by unconventional means, such as
a0d0e21e 977a return, a goto, or a loop control statement.
978
748a9306 979=item Fatal VMS error at %s, line %d
a0d0e21e 980
748a9306 981(P) An error peculiar to VMS. Something untoward happened in a VMS system
982service or RTL routine; Perl's exit status should provide more details. The
983filename in "at %s" and the line number in "line %d" tell you which section of
984the Perl source code is distressed.
a0d0e21e 985
986=item fcntl is not implemented
987
988(F) Your machine apparently doesn't implement fcntl(). What is this, a
989PDP-11 or something?
990
991=item Filehandle %s never opened
992
993(W) An I/O operation was attempted on a filehandle that was never initialized.
994You need to do an open() or a socket() call, or call a constructor from
995the FileHandle package.
996
5f05dabc 997=item Filehandle %s opened for only input
a0d0e21e 998
999(W) You tried to write on a read-only filehandle. If you
1000intended it to be a read-write filehandle, you needed to open it with
8b1a09fc 1001"+E<lt>" or "+E<gt>" or "+E<gt>E<gt>" instead of with "E<lt>" or nothing. If
5f05dabc 1002you intended only to write the file, use "E<gt>" or "E<gt>E<gt>". See
8b1a09fc 1003L<perlfunc/open>.
a0d0e21e 1004
5f05dabc 1005=item Filehandle opened for only input
a0d0e21e 1006
1007(W) You tried to write on a read-only filehandle. If you
1008intended it to be a read-write filehandle, you needed to open it with
8b1a09fc 1009"+E<lt>" or "+E<gt>" or "+E<gt>E<gt>" instead of with "E<lt>" or nothing. If
5f05dabc 1010you intended only to write the file, use "E<gt>" or "E<gt>E<gt>". See
8b1a09fc 1011L<perlfunc/open>.
a0d0e21e 1012
1013=item Final $ should be \$ or $name
1014
1015(F) You must now decide whether the final $ in a string was meant to be
1016a literal dollar sign, or was meant to introduce a variable name
1017that happens to be missing. So you have to put either the backslash or
1018the name.
1019
1020=item Final @ should be \@ or @name
1021
1022(F) You must now decide whether the final @ in a string was meant to be
1023a literal "at" sign, or was meant to introduce a variable name
1024that happens to be missing. So you have to put either the backslash or
1025the name.
1026
1027=item Format %s redefined
1028
1029(W) You redefined a format. To suppress this warning, say
1030
1031 {
1032 local $^W = 0;
1033 eval "format NAME =...";
1034 }
1035
1036=item Format not terminated
1037
1038(F) A format must be terminated by a line with a solitary dot. Perl got
1039to the end of your file without finding such a line.
1040
1041=item Found = in conditional, should be ==
1042
1043(W) You said
1044
1045 if ($foo = 123)
1046
1047when you meant
1048
1049 if ($foo == 123)
1050
1051(or something like that).
1052
1053=item gdbm store returned %d, errno %d, key "%s"
1054
1055(S) A warning from the GDBM_File extension that a store failed.
1056
1057=item gethostent not implemented
1058
1059(F) Your C library apparently doesn't implement gethostent(), probably
1060because if it did, it'd feel morally obligated to return every hostname
1061on the Internet.
1062
1063=item get{sock,peer}name() on closed fd
1064
1065(W) You tried to get a socket or peer socket name on a closed socket.
1066Did you forget to check the return value of your socket() call?
1067
748a9306 1068=item getpwnam returned invalid UIC %#o for user "%s"
1069
1070(S) A warning peculiar to VMS. The call to C<sys$getuai> underlying the
1071C<getpwnam> operator returned an invalid UIC.
1072
1073
a0d0e21e 1074=item Glob not terminated
1075
1076(F) The lexer saw a left angle bracket in a place where it was expecting
1077a term, so it's looking for the corresponding right angle bracket, and not
1078finding it. Chances are you left some needed parentheses out earlier in
1079the line, and you really meant a "less than".
1080
1081=item Global symbol "%s" requires explicit package name
1082
68dc0745 1083(F) You've said "use strict vars", which indicates that all variables
1084must either be lexically scoped (using "my"), or explicitly qualified to
a0d0e21e 1085say which package the global variable is in (using "::").
1086
1087=item goto must have label
1088
1089(F) Unlike with "next" or "last", you're not allowed to goto an
1090unspecified destination. See L<perlfunc/goto>.
1091
1092=item Had to create %s unexpectedly
1093
1094(S) A routine asked for a symbol from a symbol table that ought to have
1095existed already, but for some reason it didn't, and had to be created on
1096an emergency basis to prevent a core dump.
1097
1098=item Hash %%s missing the % in argument %d of %s()
1099
1100(D) Really old Perl let you omit the % on hash names in some spots. This
1101is now heavily deprecated.
1102
8b1a09fc 1103=item Ill-formed logical name |%s| in prime_env_iter
a0d0e21e 1104
8b1a09fc 1105(W) A warning peculiar to VMS. A logical name was encountered when preparing
1106to iterate over %ENV which violates the syntactic rules governing logical
5f05dabc 1107names. Because it cannot be translated normally, it is skipped, and will not
1108appear in %ENV. This may be a benign occurrence, as some software packages
8b1a09fc 1109might directly modify logical name tables and introduce non-standard names,
1110or it may indicate that a logical name table has been corrupted.
a0d0e21e 1111
4fdae800 1112=item Illegal character %s (carriage return)
1113
1114(F) A carriage return character was found in the input. This is an
1115error, and not a warning, because carriage return characters can break
68dc0745 1116here documents (e.g., C<print E<lt>E<lt>EOF;>).
1117
1118Under UNIX, this error is usually caused by executing Perl code --
1119either the main program, a module, or an eval'd string -- that was
1120transferred over a network connection from a non-UNIX system without
1121properly converting the text file format.
1122
1123Under systems that use something other than '\n' to delimit lines of
1124text, this error can also be caused by reading Perl code from a file
1125handle that is in binary mode (as set by the C<binmode> operator).
1126
1127In either case, the Perl code in question will probably need to be
1128converted with something like C<s/\x0D\x0A?/\n/g> before it can be
1129executed.
4fdae800 1130
a0d0e21e 1131=item Illegal division by zero
1132
1133(F) You tried to divide a number by 0. Either something was wrong in your
1134logic, or you need to put a conditional in to guard against meaningless input.
1135
1136=item Illegal modulus zero
1137
1138(F) You tried to divide a number by 0 to get the remainder. Most numbers
1139don't take to this kindly.
1140
1141=item Illegal octal digit
1142
1143(F) You used an 8 or 9 in a octal number.
1144
748a9306 1145=item Illegal octal digit ignored
1146
1147(W) You may have tried to use an 8 or 9 in a octal number. Interpretation
1148of the octal number stopped before the 8 or 9.
1149
9607fc9c 1150=item In string, @%s now must be written as \@%s
1151
1152(F) It used to be that Perl would try to guess whether you wanted an
1153array interpolated or a literal @. It did this when the string was first
1154used at runtime. Now strings are parsed at compile time, and ambiguous
1155instances of @ must be disambiguated, either by prepending a backslash to
1156indicate a literal, or by declaring (or using) the array within the
1157program before the string (lexically). (Someday it will simply assume
1158that an unbackslashed @ interpolates an array.)
1159
a0d0e21e 1160=item Insecure dependency in %s
1161
8b1a09fc 1162(F) You tried to do something that the tainting mechanism didn't like.
a0d0e21e 1163The tainting mechanism is turned on when you're running setuid or setgid,
1164or when you specify B<-T> to turn it on explicitly. The tainting mechanism
1165labels all data that's derived directly or indirectly from the user,
1166who is considered to be unworthy of your trust. If any such data is
1167used in a "dangerous" operation, you get this error. See L<perlsec>
1168for more information.
1169
1170=item Insecure directory in %s
1171
1172(F) You can't use system(), exec(), or a piped open in a setuid or setgid
8b1a09fc 1173script if C<$ENV{PATH}> contains a directory that is writable by the world.
a0d0e21e 1174See L<perlsec>.
1175
1176=item Insecure PATH
1177
1178(F) You can't use system(), exec(), or a piped open in a setuid or
8b1a09fc 1179setgid script if C<$ENV{PATH}> is derived from data supplied (or
a0d0e21e 1180potentially supplied) by the user. The script must set the path to a
1181known value, using trustworthy data. See L<perlsec>.
1182
bbce6d69 1183=item Integer overflow in hex number
1184
1185(S) The literal hex number you have specified is too big for your
1186architecture. On a 32-bit architecture the largest hex literal is
11870xFFFFFFFF.
1188
1189=item Integer overflow in octal number
1190
1191(S) The literal octal number you have specified is too big for your
1192architecture. On a 32-bit architecture the largest octal literal is
1193037777777777.
1194
748a9306 1195=item Internal inconsistency in tracking vforks
1196
1197(S) A warning peculiar to VMS. Perl keeps track of the number
5f05dabc 1198of times you've called C<fork> and C<exec>, to determine
2ba9eb46 1199whether the current call to C<exec> should affect the current
748a9306 1200script or a subprocess (see L<perlvms/exec>). Somehow, this count
1201has become scrambled, so Perl is making a guess and treating
1202this C<exec> as a request to terminate the Perl script
1203and execute the specified command.
1204
a0d0e21e 1205=item internal disaster in regexp
1206
1207(P) Something went badly wrong in the regular expression parser.
1208
1209=item internal urp in regexp at /%s/
1210
1211(P) Something went badly awry in the regular expression parser.
1212
1213=item invalid [] range in regexp
1214
1215(F) The range specified in a character class had a minimum character
1216greater than the maximum character. See L<perlre>.
1217
1218=item ioctl is not implemented
1219
1220(F) Your machine apparently doesn't implement ioctl(), which is pretty
1221strange for a machine that supports C.
1222
1223=item junk on end of regexp
1224
1225(P) The regular expression parser is confused.
1226
1227=item Label not found for "last %s"
1228
1229(F) You named a loop to break out of, but you're not currently in a
1230loop of that name, not even if you count where you were called from.
1231See L<perlfunc/last>.
1232
1233=item Label not found for "next %s"
1234
1235(F) You named a loop to continue, but you're not currently in a loop of
1236that name, not even if you count where you were called from. See
1237L<perlfunc/last>.
1238
1239=item Label not found for "redo %s"
1240
1241(F) You named a loop to restart, but you're not currently in a loop of
1242that name, not even if you count where you were called from. See
1243L<perlfunc/last>.
1244
1245=item listen() on closed fd
1246
1247(W) You tried to do a listen on a closed socket. Did you forget to check
1248the return value of your socket() call? See L<perlfunc/listen>.
1249
a0d0e21e 1250=item Method for operation %s not found in package %s during blessing
1251
1252(F) An attempt was made to specify an entry in an overloading table that
e7ea3e70 1253doesn't resolve to a valid subroutine. See L<overload>.
a0d0e21e 1254
1255=item Might be a runaway multi-line %s string starting on line %d
1256
1257(S) An advisory indicating that the previous error may have been caused
1258by a missing delimiter on a string or pattern, because it eventually
1259ended earlier on the current line.
1260
1261=item Misplaced _ in number
1262
1263(W) An underline in a decimal constant wasn't on a 3-digit boundary.
1264
1265=item Missing $ on loop variable
1266
8b1a09fc 1267(F) Apparently you've been programming in B<csh> too much. Variables are always
1268mentioned with the $ in Perl, unlike in the shells, where it can vary from
a0d0e21e 1269one line to the next.
1270
1271=item Missing comma after first argument to %s function
1272
1273(F) While certain functions allow you to specify a filehandle or an
1274"indirect object" before the argument list, this ain't one of them.
1275
748a9306 1276=item Missing operator before %s?
1277
1278(S) This is an educated guess made in conjunction with the message "%s
1279found where operator expected". Often the missing operator is a comma.
1280
a0d0e21e 1281=item Missing right bracket
1282
1283(F) The lexer counted more opening curly brackets (braces) than closing ones.
1284As a general rule, you'll find it's missing near the place you were last
1285editing.
1286
1287=item Missing semicolon on previous line?
1288
1289(S) This is an educated guess made in conjunction with the message "%s
1290found where operator expected". Don't automatically put a semicolon on
1291the previous line just because you saw this message.
1292
1293=item Modification of a read-only value attempted
1294
1295(F) You tried, directly or indirectly, to change the value of a
5f05dabc 1296constant. You didn't, of course, try "2 = 1", because the compiler
a0d0e21e 1297catches that. But an easy way to do the same thing is:
1298
1299 sub mod { $_[0] = 1 }
1300 mod(2);
1301
1302Another way is to assign to a substr() that's off the end of the string.
1303
1304=item Modification of non-creatable array value attempted, subscript %d
1305
1306(F) You tried to make an array value spring into existence, and the
1307subscript was probably negative, even counting from end of the array
1308backwards.
1309
1310=item Modification of non-creatable hash value attempted, subscript "%s"
1311
1312(F) You tried to make a hash value spring into existence, and it couldn't
1313be created for some peculiar reason.
1314
1315=item Module name must be constant
1316
1317(F) Only a bare module name is allowed as the first argument to a "use".
1318
1319=item msg%s not implemented
1320
1321(F) You don't have System V message IPC on your system.
1322
1323=item Multidimensional syntax %s not supported
1324
8b1a09fc 1325(W) Multidimensional arrays aren't written like C<$foo[1,2,3]>. They're written
1326like C<$foo[1][2][3]>, as in C.
1327
1328=item Name "%s::%s" used only once: possible typo
1329
68dc0745 1330(W) Typographical errors often show up as unique variable names.
1331If you had a good reason for having a unique name, then just mention
1332it again somehow to suppress the message. The C<use vars> pragma is
1333provided for just this purpose.
a0d0e21e 1334
1335=item Negative length
1336
1337(F) You tried to do a read/write/send/recv operation with a buffer length
1338that is less than 0. This is difficult to imagine.
1339
1340=item nested *?+ in regexp
1341
5f05dabc 1342(F) You can't quantify a quantifier without intervening parentheses. So
a0d0e21e 1343things like ** or +* or ?* are illegal.
1344
5f05dabc 1345Note, however, that the minimal matching quantifiers, C<*?>, C<+?>, and C<??> appear
a0d0e21e 1346to be nested quantifiers, but aren't. See L<perlre>.
1347
1348=item No #! line
1349
1350(F) The setuid emulator requires that scripts have a well-formed #! line
1351even on machines that don't support the #! construct.
1352
1353=item No %s allowed while running setuid
1354
1355(F) Certain operations are deemed to be too insecure for a setuid or setgid
1356script to even be allowed to attempt. Generally speaking there will be
1357another way to do what you want that is, if not secure, at least securable.
1358See L<perlsec>.
1359
1360=item No B<-e> allowed in setuid scripts
1361
1362(F) A setuid script can't be specified by the user.
1363
1364=item No comma allowed after %s
1365
1366(F) A list operator that has a filehandle or "indirect object" is not
1367allowed to have a comma between that and the following arguments.
1368Otherwise it'd be just another one of the arguments.
1369
0a753a76 1370One possible cause for this is that you expected to have imported a
1371constant to your name space with B<use> or B<import> while no such
1372importing took place, it may for example be that your operating system
1373does not support that particular constant. Hopefully you did use an
1374explicit import list for the constants you expect to see, please see
1375L<perlfunc/use> and L<perlfunc/import>. While an explicit import list
1376would probably have caught this error earlier it naturally does not
1377remedy the fact that your operating system still does not support that
1378constant. Maybe you have a typo in the constants of the symbol import
1379list of B<use> or B<import> or in the constant name at the line where
1380this error was triggered?
1381
748a9306 1382=item No command into which to pipe on command line
1383
1384(F) An error peculiar to VMS. Perl handles its own command line redirection,
1385and found a '|' at the end of the command line, so it doesn't know whither you
1386want to pipe the output from this command.
1387
a0d0e21e 1388=item No DB::DB routine defined
1389
1390(F) The currently executing code was compiled with the B<-d> switch,
1391but for some reason the perl5db.pl file (or some facsimile thereof)
1392didn't define a routine to be called at the beginning of each
1393statement. Which is odd, because the file should have been required
1394automatically, and should have blown up the require if it didn't parse
1395right.
1396
1397=item No dbm on this machine
1398
1399(P) This is counted as an internal error, because every machine should
5f05dabc 1400supply dbm nowadays, because Perl comes with SDBM. See L<SDBM_File>.
a0d0e21e 1401
1402=item No DBsub routine
1403
1404(F) The currently executing code was compiled with the B<-d> switch,
1405but for some reason the perl5db.pl file (or some facsimile thereof)
1406didn't define a DB::sub routine to be called at the beginning of each
1407ordinary subroutine call.
1408
8b1a09fc 1409=item No error file after 2E<gt> or 2E<gt>E<gt> on command line
748a9306 1410
1411(F) An error peculiar to VMS. Perl handles its own command line redirection,
8b1a09fc 1412and found a '2E<gt>' or a '2E<gt>E<gt>' on the command line, but can't find
1413the name of the file to which to write data destined for stderr.
748a9306 1414
8b1a09fc 1415=item No input file after E<lt> on command line
748a9306 1416
1417(F) An error peculiar to VMS. Perl handles its own command line redirection,
8b1a09fc 1418and found a 'E<lt>' on the command line, but can't find the name of the file
1419from which to read data for stdin.
748a9306 1420
8b1a09fc 1421=item No output file after E<gt> on command line
748a9306 1422
1423(F) An error peculiar to VMS. Perl handles its own command line redirection,
8b1a09fc 1424and found a lone 'E<gt>' at the end of the command line, so it doesn't know
1425whither you wanted to redirect stdout.
748a9306 1426
8b1a09fc 1427=item No output file after E<gt> or E<gt>E<gt> on command line
748a9306 1428
1429(F) An error peculiar to VMS. Perl handles its own command line redirection,
8b1a09fc 1430and found a 'E<gt>' or a 'E<gt>E<gt>' on the command line, but can't find the
1431name of the file to which to write data destined for stdout.
748a9306 1432
a0d0e21e 1433=item No Perl script found in input
1434
1435(F) You called C<perl -x>, but no line was found in the file beginning
1436with #! and containing the word "perl".
1437
1438=item No setregid available
1439
1440(F) Configure didn't find anything resembling the setregid() call for
1441your system.
1442
1443=item No setreuid available
1444
1445(F) Configure didn't find anything resembling the setreuid() call for
1446your system.
1447
1448=item No space allowed after B<-I>
1449
1450(F) The argument to B<-I> must follow the B<-I> immediately with no
1451intervening space.
1452
748a9306 1453=item No such pipe open
1454
1455(P) An error peculiar to VMS. The internal routine my_pclose() tried to
1456close a pipe which hadn't been opened. This should have been caught earlier as
1457an attempt to close an unopened filehandle.
1458
a0d0e21e 1459=item No such signal: SIG%s
1460
1461(W) You specified a signal name as a subscript to %SIG that was not recognized.
1462Say C<kill -l> in your shell to see the valid signal names on your system.
1463
1464=item Not a CODE reference
1465
1466(F) Perl was trying to evaluate a reference to a code value (that is, a
1467subroutine), but found a reference to something else instead. You can
1468use the ref() function to find out what kind of ref it really was.
1469See also L<perlref>.
1470
1471=item Not a format reference
1472
1473(F) I'm not sure how you managed to generate a reference to an anonymous
1474format, but this indicates you did, and that it didn't exist.
1475
1476=item Not a GLOB reference
1477
55497cff 1478(F) Perl was trying to evaluate a reference to a "typeglob" (that is,
a0d0e21e 1479a symbol table entry that looks like C<*foo>), but found a reference to
1480something else instead. You can use the ref() function to find out
1481what kind of ref it really was. See L<perlref>.
1482
1483=item Not a HASH reference
1484
1485(F) Perl was trying to evaluate a reference to a hash value, but
1486found a reference to something else instead. You can use the ref()
1487function to find out what kind of ref it really was. See L<perlref>.
1488
1489=item Not a perl script
1490
1491(F) The setuid emulator requires that scripts have a well-formed #! line
1492even on machines that don't support the #! construct. The line must
1493mention perl.
1494
1495=item Not a SCALAR reference
1496
1497(F) Perl was trying to evaluate a reference to a scalar value, but
1498found a reference to something else instead. You can use the ref()
1499function to find out what kind of ref it really was. See L<perlref>.
1500
1501=item Not a subroutine reference
1502
1503(F) Perl was trying to evaluate a reference to a code value (that is, a
1504subroutine), but found a reference to something else instead. You can
1505use the ref() function to find out what kind of ref it really was.
1506See also L<perlref>.
1507
e7ea3e70 1508=item Not a subroutine reference in overload table
a0d0e21e 1509
1510(F) An attempt was made to specify an entry in an overloading table that
8b1a09fc 1511doesn't somehow point to a valid subroutine. See L<overload>.
a0d0e21e 1512
1513=item Not an ARRAY reference
1514
1515(F) Perl was trying to evaluate a reference to an array value, but
1516found a reference to something else instead. You can use the ref()
1517function to find out what kind of ref it really was. See L<perlref>.
1518
1519=item Not enough arguments for %s
1520
1521(F) The function requires more arguments than you specified.
1522
1523=item Not enough format arguments
1524
1525(W) A format specified more picture fields than the next line supplied.
1526See L<perlform>.
1527
1528=item Null filename used
1529
5f05dabc 1530(F) You can't require the null filename, especially because on many machines
a0d0e21e 1531that means the current directory! See L<perlfunc/require>.
1532
55497cff 1533=item Null picture in formline
1534
1535(F) The first argument to formline must be a valid format picture
1536specification. It was found to be empty, which probably means you
1537supplied it an uninitialized value. See L<perlform>.
1538
a0d0e21e 1539=item NULL OP IN RUN
1540
1541(P) Some internal routine called run() with a null opcode pointer.
1542
1543=item Null realloc
1544
1545(P) An attempt was made to realloc NULL.
1546
1547=item NULL regexp argument
1548
5f05dabc 1549(P) The internal pattern matching routines blew it big time.
a0d0e21e 1550
1551=item NULL regexp parameter
1552
1553(P) The internal pattern matching routines are out of their gourd.
1554
1555=item Odd number of elements in hash list
1556
1557(S) You specified an odd number of elements to a hash list, which is odd,
5f05dabc 1558because hash lists come in key/value pairs.
a0d0e21e 1559
bbce6d69 1560=item Offset outside string
1561
1562(F) You tried to do a read/write/send/recv operation with an offset
1563pointing outside the buffer. This is difficult to imagine.
1564The sole exception to this is that C<sysread()>ing past the buffer
1565will extend the buffer and zero pad the new area.
1566
a0d0e21e 1567=item oops: oopsAV
1568
1569(S) An internal warning that the grammar is screwed up.
1570
1571=item oops: oopsHV
1572
1573(S) An internal warning that the grammar is screwed up.
1574
e7ea3e70 1575=item Operation `%s': no method found,%s
44a8e56a 1576
e7ea3e70 1577(F) An attempt was made to perform an overloaded operation for which
1578no handler was defined. While some handlers can be autogenerated in
1579terms of other handlers, there is no default handler for any
1580operation, unless C<fallback> overloading key is specified to be
1581true. See L<overload>.
44a8e56a 1582
748a9306 1583=item Operator or semicolon missing before %s
1584
1585(S) You used a variable or subroutine call where the parser was
1586expecting an operator. The parser has assumed you really meant
1587to use an operator, but this is highly likely to be incorrect.
1588For example, if you say "*foo *foo" it will be interpreted as
1589if you said "*foo * 'foo'".
1590
a0d0e21e 1591=item Out of memory for yacc stack
1592
1593(F) The yacc parser wanted to grow its stack so it could continue parsing,
1594but realloc() wouldn't give it more memory, virtual or otherwise.
1595
1596=item Out of memory!
1597
55497cff 1598(X|F) The malloc() function returned 0, indicating there was insufficient
eff9c6e2 1599remaining memory (or virtual memory) to satisfy the request.
1600
1601The request was judged to be small, so the possibility to trap it
1602depends on the way perl was compiled. By default it is not trappable.
1603However, if compiled for this, Perl may use the contents of C<$^M> as
1604an emergency pool after die()ing with this message. In this case the
55497cff 1605error is trappable I<once>.
1606
1607=item Out of memory during request for %s
1608
1609(F) The malloc() function returned 0, indicating there was insufficient
1610remaining memory (or virtual memory) to satisfy the request. However,
1611the request was judged large enough (compile-time default is 64K), so
1612a possibility to shut down by trapping this error is granted.
1613
a0d0e21e 1614=item page overflow
1615
1616(W) A single call to write() produced more lines than can fit on a page.
1617See L<perlform>.
1618
1619=item panic: ck_grep
1620
1621(P) Failed an internal consistency check trying to compile a grep.
1622
1623=item panic: ck_split
1624
1625(P) Failed an internal consistency check trying to compile a split.
1626
1627=item panic: corrupt saved stack index
1628
1629(P) The savestack was requested to restore more localized values than there
1630are in the savestack.
1631
1632=item panic: die %s
1633
1634(P) We popped the context stack to an eval context, and then discovered
1635it wasn't an eval context.
1636
1637=item panic: do_match
1638
1639(P) The internal pp_match() routine was called with invalid operational data.
1640
1641=item panic: do_split
1642
1643(P) Something terrible went wrong in setting up for the split.
1644
1645=item panic: do_subst
1646
1647(P) The internal pp_subst() routine was called with invalid operational data.
1648
1649=item panic: do_trans
1650
1651(P) The internal do_trans() routine was called with invalid operational data.
1652
1653=item panic: goto
1654
1655(P) We popped the context stack to a context with the specified label,
1656and then discovered it wasn't a context we know how to do a goto in.
1657
1658=item panic: INTERPCASEMOD
1659
1660(P) The lexer got into a bad state at a case modifier.
1661
1662=item panic: INTERPCONCAT
1663
1664(P) The lexer got into a bad state parsing a string with brackets.
1665
1666=item panic: last
1667
1668(P) We popped the context stack to a block context, and then discovered
1669it wasn't a block context.
1670
1671=item panic: leave_scope clearsv
1672
5f05dabc 1673(P) A writable lexical variable became read-only somehow within the scope.
a0d0e21e 1674
1675=item panic: leave_scope inconsistency
1676
1677(P) The savestack probably got out of sync. At least, there was an
1678invalid enum on the top of it.
1679
1680=item panic: malloc
1681
1682(P) Something requested a negative number of bytes of malloc.
1683
1684=item panic: mapstart
1685
1686(P) The compiler is screwed up with respect to the map() function.
1687
1688=item panic: null array
1689
1690(P) One of the internal array routines was passed a null AV pointer.
1691
1692=item panic: pad_alloc
1693
1694(P) The compiler got confused about which scratch pad it was allocating
1695and freeing temporaries and lexicals from.
1696
1697=item panic: pad_free curpad
1698
1699(P) The compiler got confused about which scratch pad it was allocating
1700and freeing temporaries and lexicals from.
1701
1702=item panic: pad_free po
1703
1704(P) An invalid scratch pad offset was detected internally.
1705
1706=item panic: pad_reset curpad
1707
1708(P) The compiler got confused about which scratch pad it was allocating
1709and freeing temporaries and lexicals from.
1710
1711=item panic: pad_sv po
1712
1713(P) An invalid scratch pad offset was detected internally.
1714
1715=item panic: pad_swipe curpad
1716
1717(P) The compiler got confused about which scratch pad it was allocating
1718and freeing temporaries and lexicals from.
1719
1720=item panic: pad_swipe po
1721
1722(P) An invalid scratch pad offset was detected internally.
1723
1724=item panic: pp_iter
1725
1726(P) The foreach iterator got called in a non-loop context frame.
1727
1728=item panic: realloc
1729
1730(P) Something requested a negative number of bytes of realloc.
1731
1732=item panic: restartop
1733
1734(P) Some internal routine requested a goto (or something like it), and
1735didn't supply the destination.
1736
1737=item panic: return
1738
1739(P) We popped the context stack to a subroutine or eval context, and
1740then discovered it wasn't a subroutine or eval context.
1741
1742=item panic: scan_num
1743
1744(P) scan_num() got called on something that wasn't a number.
1745
1746=item panic: sv_insert
1747
1748(P) The sv_insert() routine was told to remove more string than there
1749was string.
1750
1751=item panic: top_env
1752
1753(P) The compiler attempted to do a goto, or something weird like that.
1754
1755=item panic: yylex
1756
1757(P) The lexer got into a bad state while processing a case modifier.
1758
5f05dabc 1759=item Pareneses missing around "%s" list
a0d0e21e 1760
1761(W) You said something like
1762
1763 my $foo, $bar = @_;
1764
1765when you meant
1766
1767 my ($foo, $bar) = @_;
1768
1769Remember that "my" and "local" bind closer than comma.
1770
1771=item Perl %3.3f required--this is only version %s, stopped
1772
1773(F) The module in question uses features of a version of Perl more recent
1774than the currently running version. How long has it been since you upgraded,
1775anyway? See L<perlfunc/require>.
1776
1777=item Permission denied
1778
1779(F) The setuid emulator in suidperl decided you were up to no good.
1780
748a9306 1781=item pid %d not a child
1782
1783(W) A warning peculiar to VMS. Waitpid() was asked to wait for a process which
1784isn't a subprocess of the current process. While this is fine from VMS'
1785perspective, it's probably not what you intended.
1786
a0d0e21e 1787=item POSIX getpgrp can't take an argument
1788
1789(F) Your C compiler uses POSIX getpgrp(), which takes no argument, unlike
1790the BSD version, which takes a pid.
1791
bbce6d69 1792=item Possible attempt to put comments in qw() list
1793
774d564b 1794(W) qw() lists contain items separated by whitespace; as with literal
1795strings, comment characters are not ignored, but are instead treated
1796as literal data. (You may have used different delimiters than the
1797exclamation marks parentheses shown here; braces are also frequently
1798used.)
bbce6d69 1799
774d564b 1800You probably wrote something like this:
1801
1802 @list = qw(
1803 a # a comment
bbce6d69 1804 b # another comment
774d564b 1805 );
bbce6d69 1806
1807when you should have written this:
1808
774d564b 1809 @list = qw(
1810 a
bbce6d69 1811 b
774d564b 1812 );
1813
1814If you really want comments, build your list the
1815old-fashioned way, with quotes and commas:
1816
1817 @list = (
1818 'a', # a comment
1819 'b', # another comment
1820 );
bbce6d69 1821
1822=item Possible attempt to separate words with commas
1823
774d564b 1824(W) qw() lists contain items separated by whitespace; therefore commas
68dc0745 1825aren't needed to separate the items. (You may have used different
774d564b 1826delimiters than the parentheses shown here; braces are also frequently
1827used.)
bbce6d69 1828
774d564b 1829You probably wrote something like this:
bbce6d69 1830
774d564b 1831 qw! a, b, c !;
1832
1833which puts literal commas into some of the list items. Write it without
1834commas if you don't want them to appear in your data:
bbce6d69 1835
774d564b 1836 qw! a b c !;
bbce6d69 1837
a0d0e21e 1838=item Possible memory corruption: %s overflowed 3rd argument
1839
1840(F) An ioctl() or fcntl() returned more than Perl was bargaining for.
1841Perl guesses a reasonable buffer size, but puts a sentinel byte at the
1842end of the buffer just in case. This sentinel byte got clobbered, and
1843Perl assumes that memory is now corrupted. See L<perlfunc/ioctl>.
1844
1845=item Precedence problem: open %s should be open(%s)
1846
1847(S) The old irregular construct
cb1a09d0 1848
a0d0e21e 1849 open FOO || die;
1850
1851is now misinterpreted as
1852
1853 open(FOO || die);
1854
68dc0745 1855because of the strict regularization of Perl 5's grammar into unary
1856and list operators. (The old open was a little of both.) You must
1857put parentheses around the filehandle, or use the new "or" operator
1858instead of "||".
a0d0e21e 1859
1860=item print on closed filehandle %s
1861
1862(W) The filehandle you're printing on got itself closed sometime before now.
1863Check your logic flow.
1864
1865=item printf on closed filehandle %s
1866
1867(W) The filehandle you're writing to got itself closed sometime before now.
1868Check your logic flow.
1869
1870=item Probable precedence problem on %s
1871
1872(W) The compiler found a bare word where it expected a conditional,
1873which often indicates that an || or && was parsed as part of the
1874last argument of the previous construct, for example:
1875
1876 open FOO || die;
1877
3fe9a6f1 1878=item Prototype mismatch: %s vs %s
4633a7c4 1879
3fe9a6f1 1880(S) The subroutine being declared or defined had previously been declared
1881or defined with a different function prototype.
4633a7c4 1882
8b1a09fc 1883=item Read on closed filehandle E<lt>%sE<gt>
a0d0e21e 1884
1885(W) The filehandle you're reading from got itself closed sometime before now.
1886Check your logic flow.
1887
1888=item Reallocation too large: %lx
1889
1890(F) You can't allocate more than 64K on an MSDOS machine.
1891
1892=item Recompile perl with B<-D>DEBUGGING to use B<-D> switch
1893
1894(F) You can't use the B<-D> option unless the code to produce the
1895desired output is compiled into Perl, which entails some overhead,
1896which is why it's currently left out of your copy.
1897
1898=item Recursive inheritance detected
1899
1900(F) More than 100 levels of inheritance were used. Probably indicates
1901an unintended loop in your inheritance hierarchy.
1902
1903=item Reference miscount in sv_replace()
1904
1905(W) The internal sv_replace() function was handed a new SV with a
1906reference count of other than 1.
1907
1908=item regexp memory corruption
1909
1910(P) The regular expression engine got confused by what the regular
1911expression compiler gave it.
1912
1913=item regexp out of space
1914
1915(P) A "can't happen" error, because safemalloc() should have caught it earlier.
1916
1917=item regexp too big
1918
2ba9eb46 1919(F) The current implementation of regular expressions uses shorts as
a0d0e21e 1920address offsets within a string. Unfortunately this means that if
1921the regular expression compiles to longer than 32767, it'll blow up.
1922Usually when you want a regular expression this big, there is a better
1923way to do it with multiple statements. See L<perlre>.
1924
1925=item Reversed %s= operator
1926
1927(W) You wrote your assignment operator backwards. The = must always
1928comes last, to avoid ambiguity with subsequent unary operators.
1929
1930=item Runaway format
1931
1932(F) Your format contained the ~~ repeat-until-blank sequence, but it
1933produced 200 lines at once, and the 200th line looked exactly like the
1934199th line. Apparently you didn't arrange for the arguments to exhaust
1935themselves, either by using ^ instead of @ (for scalar variables), or by
1936shifting or popping (for array variables). See L<perlform>.
1937
1938=item Scalar value @%s[%s] better written as $%s[%s]
1939
a6006777 1940(W) You've used an array slice (indicated by @) to select a single element of
a0d0e21e 1941an array. Generally it's better to ask for a scalar value (indicated by $).
8b1a09fc 1942The difference is that C<$foo[&bar]> always behaves like a scalar, both when
1943assigning to it and when evaluating its argument, while C<@foo[&bar]> behaves
a0d0e21e 1944like a list when you assign to it, and provides a list context to its
5f05dabc 1945subscript, which can do weird things if you're expecting only one subscript.
a0d0e21e 1946
748a9306 1947On the other hand, if you were actually hoping to treat the array
5f05dabc 1948element as a list, you need to look into how references work, because
748a9306 1949Perl will not magically convert between scalars and lists for you. See
1950L<perlref>.
1951
a6006777 1952=item Scalar value @%s{%s} better written as $%s{%s}
1953
1954(W) You've used a hash slice (indicated by @) to select a single element of
1955a hash. Generally it's better to ask for a scalar value (indicated by $).
1956The difference is that C<$foo{&bar}> always behaves like a scalar, both when
1957assigning to it and when evaluating its argument, while C<@foo{&bar}> behaves
1958like a list when you assign to it, and provides a list context to its
1959subscript, which can do weird things if you're expecting only one subscript.
1960
1961On the other hand, if you were actually hoping to treat the hash
1962element as a list, you need to look into how references work, because
1963Perl will not magically convert between scalars and lists for you. See
1964L<perlref>.
1965
a0d0e21e 1966=item Script is not setuid/setgid in suidperl
1967
1968(F) Oddly, the suidperl program was invoked on a script with its setuid
8b1a09fc 1969or setgid bit not set. This doesn't make much sense.
a0d0e21e 1970
1971=item Search pattern not terminated
1972
1973(F) The lexer couldn't find the final delimiter of a // or m{}
1974construct. Remember that bracketing delimiters count nesting level.
1975
1976=item seek() on unopened file
1977
1978(W) You tried to use the seek() function on a filehandle that was either
1979never opened or has been closed since.
1980
1981=item select not implemented
1982
1983(F) This machine doesn't implement the select() system call.
1984
1985=item sem%s not implemented
1986
1987(F) You don't have System V semaphore IPC on your system.
1988
1989=item semi-panic: attempt to dup freed string
1990
1991(S) The internal newSVsv() routine was called to duplicate a scalar
1992that had previously been marked as free.
1993
1994=item Semicolon seems to be missing
1995
1996(W) A nearby syntax error was probably caused by a missing semicolon,
1997or possibly some other missing operator, such as a comma.
1998
1999=item Send on closed socket
2000
2001(W) The filehandle you're sending to got itself closed sometime before now.
2002Check your logic flow.
2003
2004=item Sequence (?#... not terminated
2005
2006(F) A regular expression comment must be terminated by a closing
5f05dabc 2007parenthesis. Embedded parentheses aren't allowed. See L<perlre>.
a0d0e21e 2008
2009=item Sequence (?%s...) not implemented
2010
2011(F) A proposed regular expression extension has the character reserved
2012but has not yet been written. See L<perlre>.
2013
2014=item Sequence (?%s...) not recognized
2015
2016(F) You used a regular expression extension that doesn't make sense.
2017See L<perlre>.
2018
a5f75d66 2019=item Server error
2020
9607fc9c 2021Also known as "500 Server error".
2022
2023B<This is a CGI error, not a Perl error>.
2024
2025You need to make sure your script is executable, is accessible by the user
2026CGI is running the script under (which is probably not the user account you
2027tested it under), does not rely on any environment variables (like PATH)
2028from the user it isn't running under, and isn't in a location where the CGI
2029server can't find it, basically, more or less. Please see the following
2030for more information:
2031
2032 http://www.perl.com/perl/faq/idiots-guide.html
2033 http://www.perl.com/perl/faq/perl-cgi-faq.html
2034 ftp://rtfm.mit.edu/pub/usenet/news.answers/www/cgi-faq
2035 http://hoohoo.ncsa.uiuc.edu/cgi/interface.html
2036 http://www-genome.wi.mit.edu/WWW/faqs/www-security-faq.html
a5f75d66 2037
a0d0e21e 2038=item setegid() not implemented
2039
8b1a09fc 2040(F) You tried to assign to C<$)>, and your operating system doesn't support
a0d0e21e 2041the setegid() system call (or equivalent), or at least Configure didn't
2042think so.
2043
2044=item seteuid() not implemented
2045
8b1a09fc 2046(F) You tried to assign to C<$E<gt>>, and your operating system doesn't support
a0d0e21e 2047the seteuid() system call (or equivalent), or at least Configure didn't
2048think so.
2049
2050=item setrgid() not implemented
2051
8b1a09fc 2052(F) You tried to assign to C<$(>, and your operating system doesn't support
a0d0e21e 2053the setrgid() system call (or equivalent), or at least Configure didn't
2054think so.
2055
2056=item setruid() not implemented
2057
8b1a09fc 2058(F) You tried to assign to C<$<lt>>, and your operating system doesn't support
a0d0e21e 2059the setruid() system call (or equivalent), or at least Configure didn't
2060think so.
2061
2062=item Setuid/gid script is writable by world
2063
2064(F) The setuid emulator won't run a script that is writable by the world,
2065because the world might have written on it already.
2066
2067=item shm%s not implemented
2068
2069(F) You don't have System V shared memory IPC on your system.
2070
2071=item shutdown() on closed fd
2072
2073(W) You tried to do a shutdown on a closed socket. Seems a bit superfluous.
2074
f86702cc 2075=item SIG%s handler "%s" not defined
a0d0e21e 2076
2077(W) The signal handler named in %SIG doesn't, in fact, exist. Perhaps you
2078put it into the wrong package?
2079
2080=item sort is now a reserved word
2081
2082(F) An ancient error message that almost nobody ever runs into anymore.
2083But before sort was a keyword, people sometimes used it as a filehandle.
2084
2085=item Sort subroutine didn't return a numeric value
2086
2087(F) A sort comparison routine must return a number. You probably blew
4633a7c4 2088it by not using C<E<lt>=E<gt>> or C<cmp>, or by not using them correctly.
a0d0e21e 2089See L<perlfunc/sort>.
2090
2091=item Sort subroutine didn't return single value
2092
2093(F) A sort comparison subroutine may not return a list value with more
2094or less than one element. See L<perlfunc/sort>.
2095
2096=item Split loop
2097
2098(P) The split was looping infinitely. (Obviously, a split shouldn't iterate
2099more times than there are characters of input, which is what happened.)
2100See L<perlfunc/split>.
2101
8b1a09fc 2102=item Stat on unopened file E<lt>%sE<gt>
a0d0e21e 2103
2104(W) You tried to use the stat() function (or an equivalent file test)
2105on a filehandle that was either never opened or has been closed since.
2106
2107=item Statement unlikely to be reached
2108
2109(W) You did an exec() with some statement after it other than a die().
2110This is almost always an error, because exec() never returns unless
2111there was a failure. You probably wanted to use system() instead,
2112which does return. To suppress this warning, put the exec() in a block
2113by itself.
2114
e7ea3e70 2115=item Stub found while resolving method `%s' overloading `%s' in package `%s'
2116
2117(P) Overloading resolution over @ISA tree may be broken by importation stubs.
2118Stubs should never be implicitely created, but explicit calls to C<can>
2119may break this.
2120
a0d0e21e 2121=item Subroutine %s redefined
2122
2123(W) You redefined a subroutine. To suppress this warning, say
2124
2125 {
2126 local $^W = 0;
2127 eval "sub name { ... }";
2128 }
2129
2130=item Substitution loop
2131
2132(P) The substitution was looping infinitely. (Obviously, a
2133substitution shouldn't iterate more times than there are characters of
68dc0745 2134input, which is what happened.) See the discussion of substitution in
5f05dabc 2135L<perlop/"Quote and Quote-like Operators">.
a0d0e21e 2136
2137=item Substitution pattern not terminated
2138
2139(F) The lexer couldn't find the interior delimiter of a s/// or s{}{}
2140construct. Remember that bracketing delimiters count nesting level.
2141
2142=item Substitution replacement not terminated
2143
2144(F) The lexer couldn't find the final delimiter of a s/// or s{}{}
2145construct. Remember that bracketing delimiters count nesting level.
2146
2147=item substr outside of string
2148
2149(W) You tried to reference a substr() that pointed outside of a string.
2150That is, the absolute value of the offset was larger than the length of
2151the string. See L<perlfunc/substr>.
2152
f86702cc 2153=item suidperl is no longer needed since %s
a0d0e21e 2154
2155(F) Your Perl was compiled with B<-D>SETUID_SCRIPTS_ARE_SECURE_NOW, but a
2156version of the setuid emulator somehow got run anyway.
2157
2158=item syntax error
2159
2160(F) Probably means you had a syntax error. Common reasons include:
2161
2162 A keyword is misspelled.
2163 A semicolon is missing.
2164 A comma is missing.
2165 An opening or closing parenthesis is missing.
2166 An opening or closing brace is missing.
2167 A closing quote is missing.
2168
2169Often there will be another error message associated with the syntax
2170error giving more information. (Sometimes it helps to turn on B<-w>.)
2171The error message itself often tells you where it was in the line when
2172it decided to give up. Sometimes the actual error is several tokens
5f05dabc 2173before this, because Perl is good at understanding random input.
a0d0e21e 2174Occasionally the line number may be misleading, and once in a blue moon
2175the only way to figure out what's triggering the error is to call
2176C<perl -c> repeatedly, chopping away half the program each time to see
2177if the error went away. Sort of the cybernetic version of S<20 questions>.
2178
cb1a09d0 2179=item syntax error at line %d: `%s' unexpected
2180
8b1a09fc 2181(A) You've accidentally run your script through the Bourne shell
3a52c276 2182instead of Perl. Check the #! line, or manually feed your script
cb1a09d0 2183into Perl yourself.
2184
a0d0e21e 2185=item System V IPC is not implemented on this machine
2186
5f05dabc 2187(F) You tried to do something with a function beginning with "sem", "shm",
a0d0e21e 2188or "msg". See L<perlfunc/semctl>, for example.
2189
2190=item Syswrite on closed filehandle
2191
2192(W) The filehandle you're writing to got itself closed sometime before now.
2193Check your logic flow.
2194
2195=item tell() on unopened file
2196
2197(W) You tried to use the tell() function on a filehandle that was either
2198never opened or has been closed since.
2199
8b1a09fc 2200=item Test on unopened file E<lt>%sE<gt>
a0d0e21e 2201
2202(W) You tried to invoke a file test operator on a filehandle that isn't
2203open. Check your logic. See also L<perlfunc/-X>.
2204
2205=item That use of $[ is unsupported
2206
8b1a09fc 2207(F) Assignment to C<$[> is now strictly circumscribed, and interpreted as
5f05dabc 2208a compiler directive. You may say only one of
a0d0e21e 2209
2210 $[ = 0;
2211 $[ = 1;
2212 ...
2213 local $[ = 0;
2214 local $[ = 1;
2215 ...
2216
2217This is to prevent the problem of one module changing the array base
2218out from under another module inadvertently. See L<perlvar/$[>.
2219
2220=item The %s function is unimplemented
2221
2222The function indicated isn't implemented on this architecture, according
2223to the probings of Configure.
2224
f86702cc 2225=item The crypt() function is unimplemented due to excessive paranoia
a0d0e21e 2226
2227(F) Configure couldn't find the crypt() function on your machine,
2228probably because your vendor didn't supply it, probably because they
8b1a09fc 2229think the U.S. Government thinks it's a secret, or at least that they
a0d0e21e 2230will continue to pretend that it is. And if you quote me on that, I
2231will deny it.
2232
2233=item The stat preceding C<-l _> wasn't an lstat
2234
2235(F) It makes no sense to test the current stat buffer for symbolic linkhood
2236if the last stat that wrote to the stat buffer already went past
2237the symlink to get to the real file. Use an actual filename instead.
2238
2239=item times not implemented
2240
2241(F) Your version of the C library apparently doesn't do times(). I suspect
2242you're not running on Unix.
2243
2244=item Too few args to syscall
2245
2246(F) There has to be at least one argument to syscall() to specify the
2247system call to call, silly dilly.
2248
9607fc9c 2249=item Too late for "B<-T>" option
2250
2251(X) The #! line (or local equivalent) in a Perl script contains the
2252B<-T> option, but Perl was not invoked with B<-T> in its argument
2253list. This is an error because, by the time Perl discovers a B<-T> in
2254a script, it's too late to properly taint everything from the
2255environment. So Perl gives up.
f86702cc 2256
9607fc9c 2257If the Perl script is being executed as a command using the #!
2258mechanism (or its local equivalent), this error can usually be fixed
2259by editing the #! line so that the B<-T> option is a part of Perl's
2260first argument: e.g. change C<perl -n -T> to C<perl -T -n>.
f86702cc 2261
9607fc9c 2262If the Perl script is being executed as C<perl scriptname>, then the
2263B<-T> option must appear on the command line: C<perl -T scriptname>.
f86702cc 2264
cb1a09d0 2265=item Too many ('s
2266
2267=item Too many )'s
2268
2269(A) You've accidentally run your script through B<csh> instead
3a52c276 2270of Perl. Check the #! line, or manually feed your script into
2271Perl yourself.
cb1a09d0 2272
a0d0e21e 2273=item Too many args to syscall
2274
5f05dabc 2275(F) Perl supports a maximum of only 14 args to syscall().
a0d0e21e 2276
2277=item Too many arguments for %s
2278
2279(F) The function requires fewer arguments than you specified.
2280
2281=item trailing \ in regexp
2282
2283(F) The regular expression ends with an unbackslashed backslash. Backslash
2284it. See L<perlre>.
2285
2286=item Translation pattern not terminated
2287
2288(F) The lexer couldn't find the interior delimiter of a tr/// or tr[][]
2289construct.
2290
2291=item Translation replacement not terminated
2292
2293(F) The lexer couldn't find the final delimiter of a tr/// or tr[][]
2294construct.
2295
2296=item truncate not implemented
2297
2298(F) Your machine doesn't implement a file truncation mechanism that
2299Configure knows about.
2300
2301=item Type of arg %d to %s must be %s (not %s)
2302
2303(F) This function requires the argument in that position to be of a
8b1a09fc 2304certain type. Arrays must be @NAME or C<@{EXPR}>. Hashes must be
2305%NAME or C<%{EXPR}>. No implicit dereferencing is allowed--use the
a0d0e21e 2306{EXPR} forms as an explicit dereference. See L<perlref>.
2307
2308=item umask: argument is missing initial 0
2309
5f05dabc 2310(W) A umask of 222 is incorrect. It should be 0222, because octal literals
a0d0e21e 2311always start with 0 in Perl, as in C.
2312
4633a7c4 2313=item Unable to create sub named "%s"
2314
2315(F) You attempted to create or access a subroutine with an illegal name.
2316
a0d0e21e 2317=item Unbalanced context: %d more PUSHes than POPs
2318
2319(W) The exit code detected an internal inconsistency in how many execution
2320contexts were entered and left.
2321
2322=item Unbalanced saves: %d more saves than restores
2323
2324(W) The exit code detected an internal inconsistency in how many
2325values were temporarily localized.
2326
2327=item Unbalanced scopes: %d more ENTERs than LEAVEs
2328
2329(W) The exit code detected an internal inconsistency in how many blocks
2330were entered and left.
2331
2332=item Unbalanced tmps: %d more allocs than frees
2333
2334(W) The exit code detected an internal inconsistency in how many mortal
2335scalars were allocated and freed.
2336
2337=item Undefined format "%s" called
2338
2339(F) The format indicated doesn't seem to exist. Perhaps it's really in
2340another package? See L<perlform>.
2341
2342=item Undefined sort subroutine "%s" called
2343
2344(F) The sort comparison routine specified doesn't seem to exist. Perhaps
2345it's in a different package? See L<perlfunc/sort>.
2346
2347=item Undefined subroutine &%s called
2348
2349(F) The subroutine indicated hasn't been defined, or if it was, it
2350has since been undefined.
2351
2352=item Undefined subroutine called
2353
2354(F) The anonymous subroutine you're trying to call hasn't been defined,
2355or if it was, it has since been undefined.
2356
2357=item Undefined subroutine in sort
2358
2359(F) The sort comparison routine specified is declared but doesn't seem to
2360have been defined yet. See L<perlfunc/sort>.
2361
4633a7c4 2362=item Undefined top format "%s" called
2363
2364(F) The format indicated doesn't seem to exist. Perhaps it's really in
2365another package? See L<perlform>.
2366
a0d0e21e 2367=item unexec of %s into %s failed!
2368
2369(F) The unexec() routine failed for some reason. See your local FSF
2370representative, who probably put it there in the first place.
2371
2372=item Unknown BYTEORDER
2373
5f05dabc 2374(F) There are no byte-swapping functions for a machine with this byte order.
a0d0e21e 2375
2376=item unmatched () in regexp
2377
2378(F) Unbackslashed parentheses must always be balanced in regular
2379expressions. If you're a vi user, the % key is valuable for finding
5f05dabc 2380the matching parenthesis. See L<perlre>.
a0d0e21e 2381
2382=item Unmatched right bracket
2383
2384(F) The lexer counted more closing curly brackets (braces) than opening
2385ones, so you're probably missing an opening bracket. As a general
2386rule, you'll find the missing one (so to speak) near the place you were
2387last editing.
2388
2389=item unmatched [] in regexp
2390
2391(F) The brackets around a character class must match. If you wish to
2392include a closing bracket in a character class, backslash it or put it first.
2393See L<perlre>.
2394
2395=item Unquoted string "%s" may clash with future reserved word
2396
2397(W) You used a bare word that might someday be claimed as a reserved word.
2398It's best to put such a word in quotes, or capitalize it somehow, or insert
2399an underbar into it. You might also declare it as a subroutine.
2400
2401=item Unrecognized character \%03o ignored
2402
2403(S) A garbage character was found in the input, and ignored, in case it's
2404a weird control character on an EBCDIC machine, or some such.
2405
2406=item Unrecognized signal name "%s"
2407
2408(F) You specified a signal name to the kill() function that was not recognized.
2409Say C<kill -l> in your shell to see the valid signal names on your system.
2410
2411=item Unrecognized switch: -%s
2412
2413(F) You specified an illegal option to Perl. Don't do that.
2414(If you think you didn't do that, check the #! line to see if it's
2415supplying the bad switch on your behalf.)
2416
2417=item Unsuccessful %s on filename containing newline
2418
2419(W) A file operation was attempted on a filename, and that operation
2420failed, PROBABLY because the filename contained a newline, PROBABLY
2421because you forgot to chop() or chomp() it off. See L<perlfunc/chop>.
2422
2423=item Unsupported directory function "%s" called
2424
2425(F) Your machine doesn't support opendir() and readdir().
2426
2427=item Unsupported function %s
2428
2429(F) This machines doesn't implement the indicated function, apparently.
2430At least, Configure doesn't think so.
2431
2432=item Unsupported socket function "%s" called
2433
2434(F) Your machine doesn't support the Berkeley socket mechanism, or at
2435least that's what Configure thought.
2436
8b1a09fc 2437=item Unterminated E<lt>E<gt> operator
a0d0e21e 2438
2439(F) The lexer saw a left angle bracket in a place where it was expecting
2440a term, so it's looking for the corresponding right angle bracket, and not
2441finding it. Chances are you left some needed parentheses out earlier in
2442the line, and you really meant a "less than".
2443
2444=item Use of $# is deprecated
2445
8b1a09fc 2446(D) This was an ill-advised attempt to emulate a poorly defined B<awk> feature.
a0d0e21e 2447Use an explicit printf() or sprintf() instead.
2448
2449=item Use of $* is deprecated
2450
5f05dabc 2451(D) This variable magically turned on multi-line pattern matching, both for
a0d0e21e 2452you and for any luckless subroutine that you happen to call. You should
2453use the new C<//m> and C<//s> modifiers now to do that without the dangerous
2454action-at-a-distance effects of C<$*>.
2455
748a9306 2456=item Use of %s in printf format not supported
2457
5f05dabc 2458(F) You attempted to use a feature of printf that is accessible from
2459only C. This usually means there's a better way to do it in Perl.
748a9306 2460
a0d0e21e 2461=item Use of %s is deprecated
2462
2463(D) The construct indicated is no longer recommended for use, generally
2464because there's a better way to do it, and also because the old way has
2465bad side effects.
2466
8b1a09fc 2467=item Use of bare E<lt>E<lt> to mean E<lt>E<lt>"" is deprecated
4633a7c4 2468
2469(D) You are now encouraged to use the explicitly quoted form if you
3fe9a6f1 2470wish to use an empty line as the terminator of the here-document.
4633a7c4 2471
a0d0e21e 2472=item Use of implicit split to @_ is deprecated
2473
2474(D) It makes a lot of work for the compiler when you clobber a
2475subroutine's argument list, so it's better if you assign the results of
2476a split() explicitly to an array (or list).
2477
2478=item Use of uninitialized value
2479
2480(W) An undefined value was used as if it were already defined. It was
2481interpreted as a "" or a 0, but maybe it was a mistake. To suppress this
2482warning assign an initial value to your variables.
2483
2484=item Useless use of %s in void context
2485
2486(W) You did something without a side effect in a context that does nothing
2487with the return value, such as a statement that doesn't return a value
2488from a block, or the left side of a scalar comma operator. Very often
2489this points not to stupidity on your part, but a failure of Perl to parse
2490your program the way you thought it would. For example, you'd get this
2491if you mixed up your C precedence with Python precedence and said
2492
2493 $one, $two = 1, 2;
2494
2495when you meant to say
2496
2497 ($one, $two) = (1, 2);
2498
748a9306 2499Another common error is to use ordinary parentheses to construct a list
2500reference when you should be using square or curly brackets, for
2501example, if you say
2502
2503 $array = (1,2);
2504
2505when you should have said
2506
2507 $array = [1,2];
2508
2509The square brackets explicitly turn a list value into a scalar value,
2510while parentheses do not. So when a parenthesized list is evaluated in
2511a scalar context, the comma is treated like C's comma operator, which
2512throws away the left argument, which is not what you want. See
2513L<perlref> for more on this.
2514
55497cff 2515=item untie attempted while %d inner references still exist
2516
2517(W) A copy of the object returned from C<tie> (or C<tied>) was still
2518valid when C<untie> was called.
2519
68dc0745 2520=item Value of %s can be "0"; test with defined()
a6006777 2521
68dc0745 2522(W) In a conditional expression, you used <HANDLE>, <*> (glob), C<each()>,
2523or C<readdir()> as a boolean value. Each of these constructs can return a
2524value of "0"; that would make the conditional expression false, which is
2525probably not what you intended. When using these constructs in conditional
2526expressions, test their values with the C<defined> operator.
a6006777 2527
9607fc9c 2528=item Variable "%s" is not imported%s
4633a7c4 2529
2530(F) While "use strict" in effect, you referred to a global variable
2531that you apparently thought was imported from another module, because
2532something else of the same name (usually a subroutine) is exported
2533by that module. It usually means you put the wrong funny character
2534on the front of your variable.
2535
44a8e56a 2536=item Variable "%s" may be unavailable
2537
2538(W) An inner (nested) I<anonymous> subroutine is inside a I<named>
2539subroutine, and outside that is another subroutine; and the anonymous
2540(innermost) subroutine is referencing a lexical variable defined in
2541the outermost subroutine. For example:
2542
2543 sub outermost { my $a; sub middle { sub { $a } } }
2544
2545If the anonymous subroutine is called or referenced (directly or
2546indirectly) from the outermost subroutine, it will share the variable
2547as you would expect. But if the anonymous subroutine is called or
2548referenced when the outermost subroutine is not active, it will see
2549the value of the shared variable as it was before and during the
2550*first* call to the outermost subroutine, which is probably not what
2551you want.
2552
2553In these circumstances, it is usually best to make the middle
2554subroutine anonymous, using the C<sub {}> syntax. Perl has specific
2555support for shared variables in nested anonymous subroutines; a named
2556subroutine in between interferes with this feature.
2557
2558=item Variable "%s" will not stay shared
2559
2560(W) An inner (nested) I<named> subroutine is referencing a lexical
2561variable defined in an outer subroutine.
2562
2563When the inner subroutine is called, it will probably see the value of
2564the outer subroutine's variable as it was before and during the
2565*first* call to the outer subroutine; in this case, after the first
2566call to the outer subroutine is complete, the inner and outer
2567subroutines will no longer share a common value for the variable. In
2568other words, the variable will no longer be shared.
2569
2570Furthermore, if the outer subroutine is anonymous and references a
2571lexical variable outside itself, then the outer and inner subroutines
2572will I<never> share the given variable.
2573
2574This problem can usually be solved by making the inner subroutine
2575anonymous, using the C<sub {}> syntax. When inner anonymous subs that
2576reference variables in outer subroutines are called or referenced,
2577they are automatically re-bound to the current values of such
2578variables.
2579
f86702cc 2580=item Variable syntax
cb1a09d0 2581
2582(A) You've accidentally run your script through B<csh> instead
3a52c276 2583of Perl. Check the #! line, or manually feed your script into
2584Perl yourself.
cb1a09d0 2585
7e1af8bc 2586=item Warning: something's wrong
5f05dabc 2587
2588(W) You passed warn() an empty string (the equivalent of C<warn "">) or
2589you called it with no args and C<$_> was empty.
2590
f86702cc 2591=item Warning: unable to close filehandle %s properly
a0d0e21e 2592
8b1a09fc 2593(S) The implicit close() done by an open() got an error indication on the
5f05dabc 2594close(). This usually indicates your file system ran out of disk space.
a0d0e21e 2595
5f05dabc 2596=item Warning: Use of "%s" without parentheses is ambiguous
a0d0e21e 2597
2598(S) You wrote a unary operator followed by something that looks like a
2599binary operator that could also have been interpreted as a term or
2600unary operator. For instance, if you know that the rand function
2601has a default argument of 1.0, and you write
2602
2603 rand + 5;
2604
2605you may THINK you wrote the same thing as
2606
2607 rand() + 5;
2608
2609but in actual fact, you got
2610
2611 rand(+5);
2612
5f05dabc 2613So put in parentheses to say what you really mean.
a0d0e21e 2614
2615=item Write on closed filehandle
2616
2617(W) The filehandle you're writing to got itself closed sometime before now.
2618Check your logic flow.
2619
2620=item X outside of string
2621
2622(F) You had a pack template that specified a relative position before
2623the beginning of the string being unpacked. See L<perlfunc/pack>.
2624
2625=item x outside of string
2626
2627(F) You had a pack template that specified a relative position after
2628the end of the string being unpacked. See L<perlfunc/pack>.
2629
2630=item Xsub "%s" called in sort
2631
2632(F) The use of an external subroutine as a sort comparison is not yet supported.
2633
2634=item Xsub called in sort
2635
2636(F) The use of an external subroutine as a sort comparison is not yet supported.
2637
2638=item You can't use C<-l> on a filehandle
2639
2640(F) A filehandle represents an opened file, and when you opened the file it
2641already went past any symlink you are presumably trying to look for.
2642Use a filename instead.
2643
2644=item YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!
2645
5f05dabc 2646(F) And you probably never will, because you probably don't have the
a0d0e21e 2647sources to your kernel, and your vendor probably doesn't give a rip
2648about what you want. Your best bet is to use the wrapsuid script in
2649the eg directory to put a setuid C wrapper around your script.
2650
2651=item You need to quote "%s"
2652
2653(W) You assigned a bareword as a signal handler name. Unfortunately, you
2654already have a subroutine of that name declared, which means that Perl 5
2655will try to call the subroutine when the assignment is executed, which is
2656probably not what you want. (If it IS what you want, put an & in front.)
2657
2658=item [gs]etsockopt() on closed fd
2659
2660(W) You tried to get or set a socket option on a closed socket.
2661Did you forget to check the return value of your socket() call?
2662See L<perlfunc/getsockopt>.
2663
2664=item \1 better written as $1
2665
2666(W) Outside of patterns, backreferences live on as variables. The use
5f05dabc 2667of backslashes is grandfathered on the right-hand side of a
a0d0e21e 2668substitution, but stylistically it's better to use the variable form
2669because other Perl programmers will expect it, and it works better
2670if there are more than 9 backreferences.
2671
8b1a09fc 2672=item '|' and 'E<lt>' may not both be specified on command line
748a9306 2673
2674(F) An error peculiar to VMS. Perl does its own command line redirection, and
2675found that STDIN was a pipe, and that you also tried to redirect STDIN using
8b1a09fc 2676'E<lt>'. Only one STDIN stream to a customer, please.
748a9306 2677
8b1a09fc 2678=item '|' and 'E<gt>' may not both be specified on command line
748a9306 2679
2680(F) An error peculiar to VMS. Perl does its own command line redirection, and
2681thinks you tried to redirect stdout both to a file and into a pipe to another
2682command. You need to choose one or the other, though nothing's stopping you
2683from piping into a program or Perl script which 'splits' output into two
2684streams, such as
2685
2686 open(OUT,">$ARGV[0]") or die "Can't write to $ARGV[0]: $!";
2687 while (<STDIN>) {
2688 print;
2689 print OUT;
2690 }
2691 close OUT;
2692
774d564b 2693=item Got an error from DosAllocMem
33c8a3fe 2694
774d564b 2695(P) An error peculiar to OS/2. Most probably you're using an obsolete
2696version of Perl, and this should not happen anyway.
33c8a3fe 2697
2698=item Malformed PERLLIB_PREFIX
2699
2700(F) An error peculiar to OS/2. PERLLIB_PREFIX should be of the form
2701
2702 prefix1;prefix2
2703
2704or
2705
2706 prefix1 prefix2
2707
2708with non-empty prefix1 and prefix2. If C<prefix1> is indeed a prefix of
2709a builtin library search path, prefix2 is substituted. The error may appear
2710if components are not found, or are too long. See L<perlos2/"PERLLIB_PREFIX">.
2711
2712=item PERL_SH_DIR too long
2713
2714(F) An error peculiar to OS/2. PERL_SH_DIR is the directory to find the
2715C<sh>-shell in. See L<perlos2/"PERL_SH_DIR">.
2716
2717=item Process terminated by SIG%s
2718
2719(W) This is a standard message issued by OS/2 applications, while *nix
2720applications die in silence. It is considered a feature of the OS/2
2721port. One can easily disable this by appropriate sighandlers, see
2722L<perlipc/"Signals">. See L<perlos2/"Process terminated by SIGTERM/SIGINT">.
2723
a0d0e21e 2724=back
2725