home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _d997d81f7cf1953f6ed03a0c440d5639 < prev    next >
Text File  |  2000-03-23  |  200KB  |  3,611 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perldiag - various Perl diagnostics</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perldiag - various Perl diagnostics</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22. </UL>
  23. <!-- INDEX END -->
  24.  
  25. <HR>
  26. <P>
  27. <H1><A NAME="name">NAME</A></H1>
  28. <P>perldiag - various Perl diagnostics</P>
  29. <P>
  30. <HR>
  31. <H1><A NAME="description">DESCRIPTION</A></H1>
  32. <P>These messages are classified as follows (listed in increasing order of
  33. desperation):</P>
  34. <PRE>
  35.     (W) A warning (optional).
  36.     (D) A deprecation (optional).
  37.     (S) A severe warning (default).
  38.     (F) A fatal error (trappable).
  39.     (P) An internal error you should never see (trappable).
  40.     (X) A very fatal error (nontrappable).
  41.     (A) An alien error message (not generated by Perl).</PRE>
  42. <P>The majority of messages from the first three classifications above (W,
  43. D & S) can be controlled using the <CODE>warnings</CODE> pragma.</P>
  44. <P>If a message can be controlled by the <CODE>warnings</CODE> pragma, its warning
  45. category is included with the classification letter in the description
  46. below.</P>
  47. <P>Optional warnings are enabled by using the <CODE>warnings</CODE> pragma or the <STRONG>-w</STRONG>
  48. and <STRONG>-W</STRONG> switches. Warnings may be captured by setting <CODE>$SIG{__WARN__}</CODE>
  49. to a reference to a routine that will be called on each warning instead
  50. of printing it.  See <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A>.</P>
  51. <P>Default warnings are always enabled unless they are explicitly disabled
  52. with the <CODE>warnings</CODE> pragma or the <STRONG>-X</STRONG> switch.</P>
  53. <P>Trappable errors may be trapped using the eval operator.  See
  54. <A HREF="../../lib/Pod/perlfunc.html#eval">eval in the perlfunc manpage</A>.  In almost all cases, warnings may be selectively
  55. disabled or promoted to fatal errors using the <CODE>warnings</CODE> pragma.
  56. See <A HREF="../../lib/warnings.html">the warnings manpage</A>.</P>
  57. <P>Some of these messages are generic.  Spots that vary are denoted with a %s,
  58. just as in a printf format.  Note that some messages start with a %s!
  59. Since the messages are listed in alphabetical order, the symbols
  60. <CODE>"%(-?@</CODE> sort before the letters, while <CODE>[</CODE> and <CODE>\</CODE> sort after.</P>
  61. <DL>
  62. <DT><STRONG><A NAME="item_%22%25s%22_variable_%25s_masks_earlier_declaration">``%s'' variable %s masks earlier declaration in same %s</A></STRONG><BR>
  63. <DD>
  64. (W misc) A ``my'' or ``our'' variable has been redeclared in the current scope or statement,
  65. effectively eliminating all access to the previous instance.  This is almost
  66. always a typographical error.  Note that the earlier variable will still exist
  67. until the end of the scope or until all closure referents to it are
  68. destroyed.
  69. <P></P>
  70. <DT><STRONG><A NAME="item_%22my_sub%22_not_yet_implemented">``my sub'' not yet implemented</A></STRONG><BR>
  71. <DD>
  72. (F) Lexically scoped subroutines are not yet implemented.  Don't try that
  73. yet.
  74. <P></P>
  75. <DT><STRONG><A NAME="item_%22my%22_variable_%25s_can%27t_be_in_a_package">``my'' variable %s can't be in a package</A></STRONG><BR>
  76. <DD>
  77. (F) Lexically scoped variables aren't in a package, so it doesn't make sense
  78. to try to declare one with a package qualifier on the front.  Use <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A>
  79. if you want to localize a package variable.
  80. <P></P>
  81. <DT><STRONG><A NAME="item_%22no%22_not_allowed_in_expression">``no'' not allowed in expression</A></STRONG><BR>
  82. <DD>
  83. (F) The ``no'' keyword is recognized and executed at compile time, and returns
  84. no useful value.  See <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A>.
  85. <P></P>
  86. <DT><STRONG><A NAME="item_%22our%22_variable_%25s_redeclared">``our'' variable %s redeclared</A></STRONG><BR>
  87. <DD>
  88. (W misc) You seem to have already declared the same global once before in the
  89. current lexical scope.
  90. <P></P>
  91. <DT><STRONG><A NAME="item_%22use%22_not_allowed_in_expression">``use'' not allowed in expression</A></STRONG><BR>
  92. <DD>
  93. (F) The ``use'' keyword is recognized and executed at compile time, and returns
  94. no useful value.  See <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A>.
  95. <P></P>
  96. <DT><STRONG><A NAME="item_%27%21%27_allowed_only_after_types_%25s">'!' allowed only after types %s</A></STRONG><BR>
  97. <DD>
  98. (F) The '!' is allowed in <A HREF="../../lib/Pod/perlfunc.html#item_pack"><CODE>pack()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_unpack"><CODE>unpack()</CODE></A> only after certain types.
  99. See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  100. <P></P>
  101. <DT><STRONG><A NAME="item_%2F_cannot_take_a_count">/ cannot take a count</A></STRONG><BR>
  102. <DD>
  103. (F) You had an unpack template indicating a counted-length string,
  104. but you have also specified an explicit size for the string.
  105. See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  106. <P></P>
  107. <DT><STRONG><A NAME="item_%2F_must_be_followed_by_a%2C_A_or_Z">/ must be followed by a, A or Z</A></STRONG><BR>
  108. <DD>
  109. (F) You had an unpack template indicating a counted-length string,
  110. which must be followed by one of the letters a, A or Z
  111. to indicate what sort of string is to be unpacked.
  112. See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  113. <P></P>
  114. <DT><STRONG><A NAME="item_%2F_must_be_followed_by_a%2A%2C_A%2A_or_Z%2A">/ must be followed by a*, A* or Z*</A></STRONG><BR>
  115. <DD>
  116. (F) You had a pack template indicating a counted-length string,
  117. Currently the only things that can have their length counted are a*, A* or Z*.
  118. See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  119. <P></P>
  120. <DT><STRONG><A NAME="item_%2F_must_follow_a_numeric_type">/ must follow a numeric type</A></STRONG><BR>
  121. <DD>
  122. (F) You had an unpack template that contained a '#',
  123. but this did not follow some numeric unpack specification.
  124. See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  125. <P></P>
  126. <DT><STRONG><A NAME="item_%25_may_only_be_used_in_unpack">% may only be used in unpack</A></STRONG><BR>
  127. <DD>
  128. (F) You can't pack a string by supplying a checksum, because the
  129. checksumming process loses information, and you can't go the other
  130. way.  See <A HREF="../../lib/Pod/perlfunc.html#unpack">unpack in the perlfunc manpage</A>.
  131. <P></P>
  132. <DT><STRONG><A NAME="item_%2F%25s%2F%3A_Unrecognized_escape_%5C%5C%25c_passe">/%s/: Unrecognized escape \\%c passed through</A></STRONG><BR>
  133. <DD>
  134. (W regexp) You used a backslash-character combination which is not recognized
  135. by Perl.  This combination appears in an interpolated variable or a 
  136. <CODE>'</CODE>-delimited regular expression.  The character was understood literally.
  137. <P></P>
  138. <DT><STRONG><A NAME="item_%2F%25s%2F%3A_Unrecognized_escape_%5C%5C%25c_in_ch">/%s/: Unrecognized escape \\%c in character class passed through</A></STRONG><BR>
  139. <DD>
  140. (W regexp) You used a backslash-character combination which is not recognized
  141. by Perl inside character classes.  The character was understood literally.
  142. <P></P>
  143. <DT><STRONG><A NAME="item_%2F%25s%2F_should_probably_be_written_as_%22%25s%2">/%s/ should probably be written as ``%s''</A></STRONG><BR>
  144. <DD>
  145. (W syntax) You have used a pattern where Perl expected to find a string,
  146. as in the first argument to <A HREF="../../lib/Pod/perlfunc.html#item_join"><CODE>join</CODE></A>.  Perl will treat the true
  147. or false result of matching the pattern against $_ as the string,
  148. which is probably not what you had in mind.
  149. <P></P>
  150. <DT><STRONG><A NAME="item_s">%s (...) interpreted as function</A></STRONG><BR>
  151. <DD>
  152. (W syntax) You've run afoul of the rule that says that any list operator followed
  153. by parentheses turns into a function, with all the list operators arguments
  154. found inside the parentheses.  See <A HREF="../../lib/Pod/perlop.html#terms and list operators (leftward)">Terms and List Operators (Leftward) in the perlop manpage</A>.
  155. <P></P>
  156. <DT><STRONG>%s() called too early to check prototype</STRONG><BR>
  157. <DD>
  158. (W prototype) You've called a function that has a prototype before the parser saw a
  159. definition or declaration for it, and Perl could not check that the call
  160. conforms to the prototype.  You need to either add an early prototype
  161. declaration for the subroutine in question, or move the subroutine
  162. definition ahead of the call to get proper prototype checking.  Alternatively,
  163. if you are certain that you're calling the function correctly, you may put
  164. an ampersand before the name to avoid the warning.  See <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A>.
  165. <P></P>
  166. <DT><STRONG><A NAME="item_%s">%s argument is not a HASH or ARRAY element</A></STRONG><BR>
  167. <DD>
  168. (F) The argument to <A HREF="../../lib/Pod/perlfunc.html#item_exists"><CODE>exists()</CODE></A> must be a hash or array element, such as:
  169. <PRE>
  170.     $foo{$bar}
  171.     $ref->{"susie"}[12]</PRE>
  172. <P></P>
  173. <DT><STRONG>%s argument is not a HASH or ARRAY element or slice</STRONG><BR>
  174. <DD>
  175. (F) The argument to <A HREF="../../lib/Pod/perlfunc.html#item_delete"><CODE>delete()</CODE></A> must be either a hash or array element, such as:
  176. <PRE>
  177.     $foo{$bar}
  178.     $ref->{"susie"}[12]</PRE>
  179. <P>or a hash or array slice, such as:</P>
  180. <PRE>
  181.     @foo[$bar, $baz, $xyzzy]
  182.     @{$ref->[12]}{"susie", "queue"}</PRE>
  183. <P></P>
  184. <DT><STRONG>%s argument is not a subroutine name</STRONG><BR>
  185. <DD>
  186. (F) The argument to <A HREF="../../lib/Pod/perlfunc.html#item_exists"><CODE>exists()</CODE></A> for <CODE>exists &sub</CODE> must be a subroutine
  187. name, and not a subroutine call.  <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>exists &sub()</CODE></A> will generate this error.
  188. <P></P>
  189. <DT><STRONG>%s did not return a true value</STRONG><BR>
  190. <DD>
  191. (F) A required (or used) file must return a true value to indicate that
  192. it compiled correctly and ran its initialization code correctly.  It's
  193. traditional to end such a file with a ``1;'', though any true value would
  194. do.  See <A HREF="../../lib/Pod/perlfunc.html#require">require in the perlfunc manpage</A>.
  195. <P></P>
  196. <DT><STRONG>%s found where operator expected</STRONG><BR>
  197. <DD>
  198. (S) The Perl lexer knows whether to expect a term or an operator.  If it
  199. sees what it knows to be a term when it was expecting to see an operator,
  200. it gives you this warning.  Usually it indicates that an operator or
  201. delimiter was omitted, such as a semicolon.
  202. <P></P>
  203. <DT><STRONG>%s had compilation errors</STRONG><BR>
  204. <DD>
  205. (F) The final summary message when a <CODE>perl -c</CODE> fails.
  206. <P></P>
  207. <DT><STRONG>%s has too many errors</STRONG><BR>
  208. <DD>
  209. (F) The parser has given up trying to parse the program after 10 errors.
  210. Further error messages would likely be uninformative.
  211. <P></P>
  212. <DT><STRONG>%s matches null string many times</STRONG><BR>
  213. <DD>
  214. (W regexp) The pattern you've specified would be an infinite loop if the
  215. regular expression engine didn't specifically check for that.  See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  216. <P></P>
  217. <DT><STRONG>%s never introduced</STRONG><BR>
  218. <DD>
  219. (S internal) The symbol in question was declared but somehow went out of scope
  220. before it could possibly have been used.
  221. <P></P>
  222. <DT><STRONG>%s package attribute may clash with future reserved word: %s</STRONG><BR>
  223. <DD>
  224. (W reserved) A lowercase attribute name was used that had a package-specific handler.
  225. That name might have a meaning to Perl itself some day, even though it
  226. doesn't yet.  Perhaps you should use a mixed-case attribute name, instead.
  227. See <A HREF="../../lib/attributes.html">the attributes manpage</A>.
  228. <P></P>
  229. <DT><STRONG>%s syntax OK</STRONG><BR>
  230. <DD>
  231. (F) The final summary message when a <CODE>perl -c</CODE> succeeds.
  232. <P></P>
  233. <DT><STRONG><A NAME="item_%s:">%s: Command not found</A></STRONG><BR>
  234. <DD>
  235. (A) You've accidentally run your script through <STRONG>csh</STRONG> instead
  236. of Perl.  Check the #! line, or manually feed your script into
  237. Perl yourself.
  238. <P></P>
  239. <DT><STRONG>%s: Expression syntax</STRONG><BR>
  240. <DD>
  241. (A) You've accidentally run your script through <STRONG>csh</STRONG> instead
  242. of Perl.  Check the #! line, or manually feed your script into
  243. Perl yourself.
  244. <P></P>
  245. <DT><STRONG>%s: Undefined variable</STRONG><BR>
  246. <DD>
  247. (A) You've accidentally run your script through <STRONG>csh</STRONG> instead
  248. of Perl.  Check the #! line, or manually feed your script into
  249. Perl yourself.
  250. <P></P>
  251. <DT><STRONG>%s: not found</STRONG><BR>
  252. <DD>
  253. (A) You've accidentally run your script through the Bourne shell
  254. instead of Perl.  Check the #! line, or manually feed your script
  255. into Perl yourself.
  256. <P></P>
  257. <DT><STRONG><A NAME="item_%28in_cleanup%29_%25s">(in cleanup) %s</A></STRONG><BR>
  258. <DD>
  259. (W misc) This prefix usually indicates that a <CODE>DESTROY()</CODE> method raised
  260. the indicated exception.  Since destructors are usually called by
  261. the system at arbitrary points during execution, and often a vast
  262. number of times, the warning is issued only once for any number
  263. of failures that would otherwise result in the same message being
  264. repeated.
  265. <P>Failure of user callbacks dispatched using the <CODE>G_KEEPERR</CODE> flag
  266. could also result in this warning.  See <A HREF="../../lib/Pod/perlcall.html#g_keeperr">G_KEEPERR in the perlcall manpage</A>.</P>
  267. <P></P>
  268. <DT><STRONG><A NAME="item_%28Missing_semicolon_on_previous_line%3F%29">(Missing semicolon on previous line?)</A></STRONG><BR>
  269. <DD>
  270. (S) This is an educated guess made in conjunction with the message ``%s
  271. found where operator expected''.  Don't automatically put a semicolon on
  272. the previous line just because you saw this message.
  273. <P></P>
  274. <DT><STRONG><A NAME="item_%2DP_not_allowed_for_setuid%2Fsetgid_script"><STRONG>-P</STRONG> not allowed for setuid/setgid script</A></STRONG><BR>
  275. <DD>
  276. (F) The script would have to be opened by the C preprocessor by name,
  277. which provides a race condition that breaks security.
  278. <P></P>
  279. <DT><STRONG><A NAME="item_%2DT_and_%2DB_not_implemented_on_filehandles"><CODE>-T</CODE> and <CODE>-B</CODE> not implemented on filehandles</A></STRONG><BR>
  280. <DD>
  281. (F) Perl can't peek at the stdio buffer of filehandles when it doesn't
  282. know about your kind of stdio.  You'll have to use a filename instead.
  283. <P></P>
  284. <DT><STRONG><A NAME="item_%2Dp_destination%3A_%25s"><CODE>-p</CODE> destination: %s</A></STRONG><BR>
  285. <DD>
  286. (F) An error occurred during the implicit output invoked by the <CODE>-p</CODE>
  287. command-line switch.  (This output goes to STDOUT unless you've
  288. redirected it with <A HREF="../../lib/Pod/perlfunc.html#item_select"><CODE>select().)</CODE></A>
  289. <P></P>
  290. <LI><STRONG><A NAME="item_Server_error">Server error</A></STRONG><BR>
  291.  
  292. See Server error.
  293. <P></P>
  294. <DT><STRONG><A NAME="item_%3F%2B%2A_follows_nothing_in_regexp">?+* follows nothing in regexp</A></STRONG><BR>
  295. <DD>
  296. (F) You started a regular expression with a quantifier.  Backslash it
  297. if you meant it literally.   See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  298. <P></P>
  299. <DT><STRONG><A NAME="item_%40_outside_of_string">@ outside of string</A></STRONG><BR>
  300. <DD>
  301. (F) You had a pack template that specified an absolute position outside
  302. the string being unpacked.  See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  303. <P></P>
  304. <DT><STRONG><A NAME="item_%3C%3E_should_be_quotes"><> should be quotes</A></STRONG><BR>
  305. <DD>
  306. (F) You wrote <CODE>require <file></CODE> when you should have written
  307. <CODE>require 'file'</CODE>.
  308. <P></P>
  309. <DT><STRONG><A NAME="item_accept"><CODE>accept()</CODE> on closed socket %s</A></STRONG><BR>
  310. <DD>
  311. (W closed) You tried to do an accept on a closed socket.  Did you forget to check
  312. the return value of your <A HREF="../../lib/Pod/perlfunc.html#item_socket"><CODE>socket()</CODE></A> call?  See <A HREF="../../lib/Pod/perlfunc.html#accept">accept in the perlfunc manpage</A>.
  313. <P></P>
  314. <DT><STRONG><A NAME="item_Allocation_too_large%3A_%25lx">Allocation too large: %lx</A></STRONG><BR>
  315. <DD>
  316. (X) You can't allocate more than 64K on an MS-DOS machine.
  317. <P></P>
  318. <DT><STRONG><A NAME="item_scalar">Applying %s to %s will act on <CODE>scalar(%s)</CODE></A></STRONG><BR>
  319. <DD>
  320. (W misc) The pattern match (//), substitution (s///), and transliteration (tr///)
  321. operators work on scalar values.  If you apply one of them to an array
  322. or a hash, it will convert the array or hash to a scalar value -- the
  323. length of an array, or the population info of a hash -- and then work on
  324. that scalar value.  This is probably not what you meant to do.  See
  325. <A HREF="../../lib/Pod/perlfunc.html#grep">grep in the perlfunc manpage</A> and <A HREF="../../lib/Pod/perlfunc.html#map">map in the perlfunc manpage</A> for alternatives.
  326. <P></P>
  327. <DT><STRONG><A NAME="item_Arg_too_short_for_msgsnd">Arg too short for msgsnd</A></STRONG><BR>
  328. <DD>
  329. (F) <A HREF="../../lib/Pod/perlfunc.html#item_msgsnd"><CODE>msgsnd()</CODE></A> requires a string at least as long as sizeof(long).
  330. <P></P>
  331. <DT><STRONG><A NAME="item_Ambiguous_use_of_%25s_resolved_as_%25s">Ambiguous use of %s resolved as %s</A></STRONG><BR>
  332. <DD>
  333. (W ambiguous)(S) You said something that may not be interpreted the way
  334. you thought.  Normally it's pretty easy to disambiguate it by supplying
  335. a missing quote, operator, parenthesis pair or declaration.
  336. <P></P>
  337. <DT><STRONG>Ambiguous call resolved as CORE::%s(), qualify as such or use &</STRONG><BR>
  338. <DD>
  339. (W ambiguous) A subroutine you have declared has the same name as a Perl keyword,
  340. and you have used the name without qualification for calling one or the
  341. other.  Perl decided to call the builtin because the subroutine is
  342. not imported.
  343. <P>To force interpretation as a subroutine call, either put an ampersand
  344. before the subroutine name, or qualify the name with its package.
  345. Alternatively, you can import the subroutine (or pretend that it's
  346. imported with the <CODE>use subs</CODE> pragma).</P>
  347. <P>To silently interpret it as the Perl operator, use the <CODE>CORE::</CODE> prefix
  348. on the operator (e.g. <A HREF="../../lib/Pod/perlfunc.html#item_log"><CODE>CORE::log($x)</CODE></A>) or by declaring the subroutine
  349. to be an object method (see <A HREF="../../lib/Pod/perlsub.html#subroutine attributes">Subroutine Attributes in the perlsub manpage</A>
  350. or <A HREF="../../lib/attributes.html">the attributes manpage</A>).</P>
  351. <P></P>
  352. <DT><STRONG><A NAME="item_Args_must_match_%23%21_line">Args must match #! line</A></STRONG><BR>
  353. <DD>
  354. (F) The setuid emulator requires that the arguments Perl was invoked
  355. with match the arguments specified on the #! line.  Since some systems
  356. impose a one-argument limit on the #! line, try combining switches;
  357. for example, turn <CODE>-w -U</CODE> into <CODE>-wU</CODE>.
  358. <P></P>
  359. <DT><STRONG><A NAME="item_Argument_%22%25s%22_isn%27t_numeric%25s">Argument ``%s'' isn't numeric%s</A></STRONG><BR>
  360. <DD>
  361. (W numeric) The indicated string was fed as an argument to an operator that
  362. expected a numeric value instead.  If you're fortunate the message
  363. will identify which operator was so unfortunate.
  364. <P></P>
  365. <DT><STRONG>Array @%s missing the @ in argument %d of %s()</STRONG><BR>
  366. <DD>
  367. (D deprecated) Really old Perl let you omit the @ on array names in some spots.  This
  368. is now heavily deprecated.
  369. <P></P>
  370. <DT><STRONG><A NAME="item_assertion_botched%3A_%25s">assertion botched: %s</A></STRONG><BR>
  371. <DD>
  372. (P) The malloc package that comes with Perl had an internal failure.
  373. <P></P>
  374. <DT><STRONG><A NAME="item_Assertion_failed%3A_file_%22%25s%22">Assertion failed: file ``%s''</A></STRONG><BR>
  375. <DD>
  376. (P) A general assertion failed.  The file in question must be examined.
  377. <P></P>
  378. <DT><STRONG><A NAME="item_Assignment_to_both_a_list_and_a_scalar">Assignment to both a list and a scalar</A></STRONG><BR>
  379. <DD>
  380. (F) If you assign to a conditional operator, the 2nd and 3rd arguments
  381. must either both be scalars or both be lists.  Otherwise Perl won't
  382. know which context to supply to the right side.
  383. <P></P>
  384. <DT><STRONG><A NAME="item_Attempt_to_free_non%2Darena_SV%3A_0x%25lx">Attempt to free non-arena SV: 0x%lx</A></STRONG><BR>
  385. <DD>
  386. (P internal) All SV objects are supposed to be allocated from arenas that will
  387. be garbage collected on exit.  An SV was discovered to be outside any
  388. of those arenas.
  389. <P></P>
  390. <DT><STRONG><A NAME="item_Attempt_to_free_nonexistent_shared_string">Attempt to free nonexistent shared string</A></STRONG><BR>
  391. <DD>
  392. (P internal) Perl maintains a reference counted internal table of strings to
  393. optimize the storage and access of hash keys and other strings.  This
  394. indicates someone tried to decrement the reference count of a string
  395. that can no longer be found in the table.
  396. <P></P>
  397. <DT><STRONG><A NAME="item_Attempt_to_free_temp_prematurely">Attempt to free temp prematurely</A></STRONG><BR>
  398. <DD>
  399. (W debugging) Mortalized values are supposed to be freed by the <CODE>free_tmps()</CODE>
  400. routine.  This indicates that something else is freeing the SV before
  401. the <CODE>free_tmps()</CODE> routine gets a chance, which means that the <CODE>free_tmps()</CODE>
  402. routine will be freeing an unreferenced scalar when it does try to free
  403. it.
  404. <P></P>
  405. <DT><STRONG><A NAME="item_Attempt_to_free_unreferenced_glob_pointers">Attempt to free unreferenced glob pointers</A></STRONG><BR>
  406. <DD>
  407. (P internal) The reference counts got screwed up on symbol aliases.
  408. <P></P>
  409. <DT><STRONG><A NAME="item_Attempt_to_free_unreferenced_scalar">Attempt to free unreferenced scalar</A></STRONG><BR>
  410. <DD>
  411. (W internal) Perl went to decrement the reference count of a scalar to see if it
  412. would go to 0, and discovered that it had already gone to 0 earlier,
  413. and should have been freed, and in fact, probably was freed.  This
  414. could indicate that <CODE>SvREFCNT_dec()</CODE> was called too many times, or that
  415. <CODE>SvREFCNT_inc()</CODE> was called too few times, or that the SV was mortalized
  416. when it shouldn't have been, or that memory has been corrupted.
  417. <P></P>
  418. <DT><STRONG><A NAME="item_Attempt_to_join_self">Attempt to join self</A></STRONG><BR>
  419. <DD>
  420. (F) You tried to join a thread from within itself, which is an
  421. impossible task.  You may be joining the wrong thread, or you may
  422. need to move the <A HREF="../../lib/Pod/perlfunc.html#item_join"><CODE>join()</CODE></A> to some other thread.
  423. <P></P>
  424. <DT><STRONG><A NAME="item_Attempt_to_pack_pointer_to_temporary_value">Attempt to pack pointer to temporary value</A></STRONG><BR>
  425. <DD>
  426. (W pack) You tried to pass a temporary value (like the result of a
  427. function, or a computed expression) to the ``p'' <A HREF="../../lib/Pod/perlfunc.html#item_pack"><CODE>pack()</CODE></A> template.  This
  428. means the result contains a pointer to a location that could become
  429. invalid anytime, even before the end of the current statement.  Use
  430. literals or global values as arguments to the ``p'' <A HREF="../../lib/Pod/perlfunc.html#item_pack"><CODE>pack()</CODE></A> template to
  431. avoid this warning.
  432. <P></P>
  433. <DT><STRONG><A NAME="item_Attempt_to_use_reference_as_lvalue_in_substr">Attempt to use reference as lvalue in substr</A></STRONG><BR>
  434. <DD>
  435. (W substr) You supplied a reference as the first argument to <A HREF="../../lib/Pod/perlfunc.html#item_substr"><CODE>substr()</CODE></A> used
  436. as an lvalue, which is pretty strange.  Perhaps you forgot to
  437. dereference it first.  See <A HREF="../../lib/Pod/perlfunc.html#substr">substr in the perlfunc manpage</A>.
  438. <P></P>
  439. <DT><STRONG><A NAME="item_Bad_arg_length_for_%25s%2C_is_%25d%2C_should_be_%2">Bad arg length for %s, is %d, should be %d</A></STRONG><BR>
  440. <DD>
  441. (F) You passed a buffer of the wrong size to one of msgctl(), <A HREF="../../lib/Pod/perlfunc.html#item_semctl"><CODE>semctl()</CODE></A> or
  442. shmctl().  In C parlance, the correct sizes are, respectively,
  443. sizeof(struct msqid_ds *), sizeof(struct semid_ds *), and
  444. sizeof(struct shmid_ds *).
  445. <P></P>
  446. <DT><STRONG><A NAME="item_Bad_evalled_substitution_pattern">Bad evalled substitution pattern</A></STRONG><BR>
  447. <DD>
  448. (F) You've used the /e switch to evaluate the replacement for a
  449. substitution, but perl found a syntax error in the code to evaluate,
  450. most likely an unexpected right brace '}'.
  451. <P></P>
  452. <DT><STRONG><A NAME="item_Bad_filehandle%3A_%25s">Bad filehandle: %s</A></STRONG><BR>
  453. <DD>
  454. (F) A symbol was passed to something wanting a filehandle, but the symbol
  455. has no filehandle associated with it.  Perhaps you didn't do an open(), or
  456. did it in another package.
  457. <P></P>
  458. <DT><STRONG><A NAME="item_free">Bad <CODE>free()</CODE> ignored</A></STRONG><BR>
  459. <DD>
  460. (S malloc) An internal routine called <A HREF="#item_free"><CODE>free()</CODE></A> on something that had never been
  461. malloc()ed in the first place. Mandatory, but can be disabled by
  462. setting environment variable <CODE>PERL_BADFREE</CODE> to 1.
  463. <P>This message can be quite often seen with DB_File on systems with
  464. ``hard'' dynamic linking, like <CODE>AIX</CODE> and <CODE>OS/2</CODE>. It is a bug of
  465. <CODE>Berkeley DB</CODE> which is left unnoticed if <CODE>DB</CODE> uses <EM>forgiving</EM>
  466. system malloc().</P>
  467. <P></P>
  468. <DT><STRONG><A NAME="item_Bad_hash">Bad hash</A></STRONG><BR>
  469. <DD>
  470. (P) One of the internal hash routines was passed a null HV pointer.
  471. <P></P>
  472. <DT><STRONG><A NAME="item_Bad_index_while_coercing_array_into_hash">Bad index while coercing array into hash</A></STRONG><BR>
  473. <DD>
  474. (F) The index looked up in the hash found as the 0'th element of a
  475. pseudo-hash is not legal.  Index values must be at 1 or greater.
  476. See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  477. <P></P>
  478. <DT><STRONG><A NAME="item_Bad_name_after_%25s%3A%3A">Bad name after %s::</A></STRONG><BR>
  479. <DD>
  480. (F) You started to name a symbol by using a package prefix, and then didn't
  481. finish the symbol.  In particular, you can't interpolate outside of quotes,
  482. so
  483. <PRE>
  484.     $var = 'myvar';
  485.     $sym = mypack::$var;</PRE>
  486. <P>is not the same as</P>
  487. <PRE>
  488.     $var = 'myvar';
  489.     $sym = "mypack::$var";</PRE>
  490. <P></P>
  491. <DT><STRONG><A NAME="item_realloc">Bad <CODE>realloc()</CODE> ignored</A></STRONG><BR>
  492. <DD>
  493. (S malloc) An internal routine called <A HREF="#item_realloc"><CODE>realloc()</CODE></A> on something that had never been
  494. malloc()ed in the first place. Mandatory, but can be disabled by
  495. setting environment variable <CODE>PERL_BADFREE</CODE> to 1.
  496. <P></P>
  497. <DT><STRONG><A NAME="item_Bad_symbol_for_array">Bad symbol for array</A></STRONG><BR>
  498. <DD>
  499. (P) An internal request asked to add an array entry to something that
  500. wasn't a symbol table entry.
  501. <P></P>
  502. <DT><STRONG><A NAME="item_Bad_symbol_for_filehandle">Bad symbol for filehandle</A></STRONG><BR>
  503. <DD>
  504. (P) An internal request asked to add a filehandle entry to something that
  505. wasn't a symbol table entry.
  506. <P></P>
  507. <DT><STRONG><A NAME="item_Bad_symbol_for_hash">Bad symbol for hash</A></STRONG><BR>
  508. <DD>
  509. (P) An internal request asked to add a hash entry to something that
  510. wasn't a symbol table entry.
  511. <P></P>
  512. <DT><STRONG><A NAME="item_placed">Badly placed ()'s</A></STRONG><BR>
  513. <DD>
  514. (A) You've accidentally run your script through <STRONG>csh</STRONG> instead
  515. of Perl.  Check the #! line, or manually feed your script into
  516. Perl yourself.
  517. <P></P>
  518. <DT><STRONG><A NAME="item_Bareword_%22%25s%22_not_allowed_while_%22strict_su">Bareword ``%s'' not allowed while ``strict subs'' in use</A></STRONG><BR>
  519. <DD>
  520. (F) With ``strict subs'' in use, a bareword is only allowed as a
  521. subroutine identifier, in curly brackets or to the left of the ``=>'' symbol.
  522. Perhaps you need to predeclare a subroutine?
  523. <P></P>
  524. <DT><STRONG><A NAME="item_Bareword_%22%25s%22_refers_to_nonexistent_package">Bareword ``%s'' refers to nonexistent package</A></STRONG><BR>
  525. <DD>
  526. (W bareword) You used a qualified bareword of the form <CODE>Foo::</CODE>, but
  527. the compiler saw no other uses of that namespace before that point.
  528. Perhaps you need to predeclare a package?
  529. <P></P>
  530. <DT><STRONG><A NAME="item_Bareword_found_in_conditional">Bareword found in conditional</A></STRONG><BR>
  531. <DD>
  532. (W bareword) The compiler found a bareword where it expected a conditional,
  533. which often indicates that an || or && was parsed as part of the
  534. last argument of the previous construct, for example:
  535. <PRE>
  536.     open FOO || die;</PRE>
  537. <P>It may also indicate a misspelled constant that has been interpreted
  538. as a bareword:</P>
  539. <PRE>
  540.     use constant TYPO => 1;
  541.     if (TYOP) { print "foo" }</PRE>
  542. <P>The <CODE>strict</CODE> pragma is useful in avoiding such errors.</P>
  543. <P></P>
  544. <DT><STRONG><A NAME="item_BEGIN_failed%2D%2Dcompilation_aborted">BEGIN failed--compilation aborted</A></STRONG><BR>
  545. <DD>
  546. (F) An untrapped exception was raised while executing a BEGIN subroutine.
  547. Compilation stops immediately and the interpreter is exited.
  548. <P></P>
  549. <DT><STRONG><A NAME="item_BEGIN_not_safe_after_errors%2D%2Dcompilation_abort">BEGIN not safe after errors--compilation aborted</A></STRONG><BR>
  550. <DD>
  551. (F) Perl found a <CODE>BEGIN {}</CODE> subroutine (or a <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> directive, which
  552. implies a <CODE>BEGIN {}</CODE>) after one or more compilation errors had
  553. already occurred.  Since the intended environment for the <CODE>BEGIN {}</CODE>
  554. could not be guaranteed (due to the errors), and since subsequent code
  555. likely depends on its correct operation, Perl just gave up.
  556. <P></P>
  557. <DT><STRONG><A NAME="item_Binary_number_%3E_0b111111111111111111111111111111">Binary number > 0b11111111111111111111111111111111 non-portable</A></STRONG><BR>
  558. <DD>
  559. (W portable) The binary number you specified is larger than 2**32-1
  560. (4294967295) and therefore non-portable between systems.  See
  561. <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A> for more on portability concerns.
  562. <P></P>
  563. <DT><STRONG><A NAME="item_bind"><CODE>bind()</CODE> on closed socket %s</A></STRONG><BR>
  564. <DD>
  565. (W closed) You tried to do a bind on a closed socket.  Did you forget to check
  566. the return value of your <A HREF="../../lib/Pod/perlfunc.html#item_socket"><CODE>socket()</CODE></A> call?  See <A HREF="../../lib/Pod/perlfunc.html#bind">bind in the perlfunc manpage</A>.
  567. <P></P>
  568. <DT><STRONG><A NAME="item_Bit_vector_size_%3E_32_non%2Dportable">Bit vector size > 32 non-portable</A></STRONG><BR>
  569. <DD>
  570. (W portable) Using bit vector sizes larger than 32 is non-portable.
  571. <P></P>
  572. <DT><STRONG><A NAME="item_Bizarre_copy_of_%25s_in_%25s">Bizarre copy of %s in %s</A></STRONG><BR>
  573. <DD>
  574. (P) Perl detected an attempt to copy an internal value that is not copiable.
  575. <P></P>
  576. <DT><STRONG><A NAME="item_Buffer_overflow_in_prime_env_iter%3A_%25s">Buffer overflow in prime_env_iter: %s</A></STRONG><BR>
  577. <DD>
  578. (W internal) A warning peculiar to VMS.  While Perl was preparing to iterate over
  579. %ENV, it encountered a logical name or symbol definition which was too long,
  580. so it was truncated to the string shown.
  581. <P></P>
  582. <DT><STRONG><A NAME="item_Callback_called_exit">Callback called exit</A></STRONG><BR>
  583. <DD>
  584. (F) A subroutine invoked from an external package via <CODE>call_sv()</CODE>
  585. exited by calling exit.
  586. <P></P>
  587. <DT><STRONG><A NAME="item_Can%27t_%22goto%22_out_of_a_pseudo_block">Can't ``goto'' out of a pseudo block</A></STRONG><BR>
  588. <DD>
  589. (F) A ``goto'' statement was executed to jump out of what might look
  590. like a block, except that it isn't a proper block.  This usually
  591. occurs if you tried to jump out of a <A HREF="../../lib/Pod/perlfunc.html#item_sort"><CODE>sort()</CODE></A> block or subroutine, which
  592. is a no-no.  See <A HREF="../../lib/Pod/perlfunc.html#goto">goto in the perlfunc manpage</A>.
  593. <P></P>
  594. <DT><STRONG><A NAME="item_Can%27t_%22goto%22_into_the_middle_of_a_foreach_lo">Can't ``goto'' into the middle of a foreach loop</A></STRONG><BR>
  595. <DD>
  596. (F) A ``goto'' statement was executed to jump into the middle of a
  597. foreach loop.  You can't get there from here.  See <A HREF="../../lib/Pod/perlfunc.html#goto">goto in the perlfunc manpage</A>.
  598. <P></P>
  599. <DT><STRONG><A NAME="item_Can%27t_%22last%22_outside_a_loop_block">Can't ``last'' outside a loop block</A></STRONG><BR>
  600. <DD>
  601. (F) A ``last'' statement was executed to break out of the current block,
  602. except that there's this itty bitty problem called there isn't a
  603. current block.  Note that an ``if'' or ``else'' block doesn't count as a
  604. ``loopish'' block, as doesn't a block given to sort(), <A HREF="../../lib/Pod/perlfunc.html#item_map"><CODE>map()</CODE></A> or grep().
  605. You can usually double the curlies to get the same effect though,
  606. because the inner curlies will be considered a block that loops once.
  607. See <A HREF="../../lib/Pod/perlfunc.html#last">last in the perlfunc manpage</A>.
  608. <P></P>
  609. <DT><STRONG><A NAME="item_Can%27t_%22next%22_outside_a_loop_block">Can't ``next'' outside a loop block</A></STRONG><BR>
  610. <DD>
  611. (F) A ``next'' statement was executed to reiterate the current block, but
  612. there isn't a current block.  Note that an ``if'' or ``else'' block doesn't
  613. count as a ``loopish'' block, as doesn't a block given to sort(), <A HREF="../../lib/Pod/perlfunc.html#item_map"><CODE>map()</CODE></A>
  614. or grep().  You can usually double the curlies to get the same effect
  615. though, because the inner curlies will be considered a block that
  616. loops once.  See <A HREF="../../lib/Pod/perlfunc.html#next">next in the perlfunc manpage</A>.
  617. <P></P>
  618. <DT><STRONG><A NAME="item_Can%27t_read_CRTL_environ">Can't read CRTL environ</A></STRONG><BR>
  619. <DD>
  620. (S) A warning peculiar to VMS.  Perl tried to read an element of %ENV
  621. from the CRTL's internal environment array and discovered the array was
  622. missing.  You need to figure out where your CRTL misplaced its environ
  623. or define <EM>PERL_ENV_TABLES</EM> (see <A HREF="../../lib/Pod/perlvms.html">the perlvms manpage</A>) so that environ is not searched.
  624. <P></P>
  625. <DT><STRONG><A NAME="item_Can%27t_%22redo%22_outside_a_loop_block">Can't ``redo'' outside a loop block</A></STRONG><BR>
  626. <DD>
  627. (F) A ``redo'' statement was executed to restart the current block, but
  628. there isn't a current block.  Note that an ``if'' or ``else'' block doesn't
  629. count as a ``loopish'' block, as doesn't a block given to sort(), <A HREF="../../lib/Pod/perlfunc.html#item_map"><CODE>map()</CODE></A>
  630. or grep().  You can usually double the curlies to get the same effect
  631. though, because the inner curlies will be considered a block that
  632. loops once.  See <A HREF="../../lib/Pod/perlfunc.html#redo">redo in the perlfunc manpage</A>.
  633. <P></P>
  634. <DT><STRONG><A NAME="item_Can%27t_bless_non%2Dreference_value">Can't bless non-reference value</A></STRONG><BR>
  635. <DD>
  636. (F) Only hard references may be blessed.  This is how Perl ``enforces''
  637. encapsulation of objects.  See <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>.
  638. <P></P>
  639. <DT><STRONG><A NAME="item_Can%27t_break_at_that_line">Can't break at that line</A></STRONG><BR>
  640. <DD>
  641. (S internal) A warning intended to only be printed while running within the debugger, indicating
  642. the line number specified wasn't the location of a statement that could
  643. be stopped at.
  644. <P></P>
  645. <DT><STRONG><A NAME="item_Can%27t_call_method_%22%25s%22_in_empty_package_%2">Can't call method ``%s'' in empty package ``%s''</A></STRONG><BR>
  646. <DD>
  647. (F) You called a method correctly, and it correctly indicated a package
  648. functioning as a class, but that package doesn't have ANYTHING defined
  649. in it, let alone methods.  See <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>.
  650. <P></P>
  651. <DT><STRONG><A NAME="item_Can%27t_call_method_%22%25s%22_on_unblessed_refere">Can't call method ``%s'' on unblessed reference</A></STRONG><BR>
  652. <DD>
  653. (F) A method call must know in what package it's supposed to run.  It
  654. ordinarily finds this out from the object reference you supply, but
  655. you didn't supply an object reference in this case.  A reference isn't
  656. an object reference until it has been blessed.  See <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>.
  657. <P></P>
  658. <DT><STRONG><A NAME="item_Can%27t_call_method_%22%25s%22_without_a_package_o">Can't call method ``%s'' without a package or object reference</A></STRONG><BR>
  659. <DD>
  660. (F) You used the syntax of a method call, but the slot filled by the
  661. object reference or package name contains an expression that returns
  662. a defined value which is neither an object reference nor a package name.
  663. Something like this will reproduce the error:
  664. <PRE>
  665.     $BADREF = 42;
  666.     process $BADREF 1,2,3;
  667.     $BADREF->process(1,2,3);</PRE>
  668. <P></P>
  669. <DT><STRONG><A NAME="item_Can%27t_call_method_%22%25s%22_on_an_undefined_val">Can't call method ``%s'' on an undefined value</A></STRONG><BR>
  670. <DD>
  671. (F) You used the syntax of a method call, but the slot filled by the
  672. object reference or package name contains an undefined value.
  673. Something like this will reproduce the error:
  674. <PRE>
  675.     $BADREF = undef;
  676.     process $BADREF 1,2,3;
  677.     $BADREF->process(1,2,3);</PRE>
  678. <P></P>
  679. <DT><STRONG><A NAME="item_Can%27t_chdir_to_%25s">Can't chdir to %s</A></STRONG><BR>
  680. <DD>
  681. (F) You called <CODE>perl -x/foo/bar</CODE>, but <CODE>/foo/bar</CODE> is not a directory
  682. that you can chdir to, possibly because it doesn't exist.
  683. <P></P>
  684. <DT><STRONG><A NAME="item_Can%27t_check_filesystem_of_script_%22%25s%22_for_">Can't check filesystem of script ``%s'' for nosuid</A></STRONG><BR>
  685. <DD>
  686. (P) For some reason you can't check the filesystem of the script for nosuid.
  687. <P></P>
  688. <DT><STRONG><A NAME="item_Can%27t_coerce_%25s_to_integer_in_%25s">Can't coerce %s to integer in %s</A></STRONG><BR>
  689. <DD>
  690. (F) Certain types of SVs, in particular real symbol table entries
  691. (typeglobs), can't be forced to stop being what they are.  So you can't
  692. say things like:
  693. <PRE>
  694.     *foo += 1;</PRE>
  695. <P>You CAN say</P>
  696. <PRE>
  697.     $foo = *foo;
  698.     $foo += 1;</PRE>
  699. <P>but then $foo no longer contains a glob.</P>
  700. <P></P>
  701. <DT><STRONG><A NAME="item_Can%27t_coerce_%25s_to_number_in_%25s">Can't coerce %s to number in %s</A></STRONG><BR>
  702. <DD>
  703. (F) Certain types of SVs, in particular real symbol table entries
  704. (typeglobs), can't be forced to stop being what they are.
  705. <P></P>
  706. <DT><STRONG><A NAME="item_Can%27t_coerce_%25s_to_string_in_%25s">Can't coerce %s to string in %s</A></STRONG><BR>
  707. <DD>
  708. (F) Certain types of SVs, in particular real symbol table entries
  709. (typeglobs), can't be forced to stop being what they are.
  710. <P></P>
  711. <DT><STRONG><A NAME="item_Can%27t_coerce_array_into_hash">Can't coerce array into hash</A></STRONG><BR>
  712. <DD>
  713. (F) You used an array where a hash was expected, but the array has no
  714. information on how to map from keys to array indices.  You can do that
  715. only with arrays that have a hash reference at index 0.
  716. <P></P>
  717. <DT><STRONG><A NAME="item_Can%27t_create_pipe_mailbox">Can't create pipe mailbox</A></STRONG><BR>
  718. <DD>
  719. (P) An error peculiar to VMS.  The process is suffering from exhausted quotas
  720. or other plumbing problems.
  721. <P></P>
  722. <DT><STRONG><A NAME="item_Can%27t_declare_class_for_non%2Dscalar_%25s_in_%22">Can't declare class for non-scalar %s in ``%s''</A></STRONG><BR>
  723. <DD>
  724. (S) Currently, only scalar variables can declared with a specific class
  725. qualifier in a ``my'' or ``our'' declaration.  The semantics may be extended
  726. for other types of variables in future.
  727. <P></P>
  728. <DT><STRONG><A NAME="item_Can%27t_declare_%25s_in_%22%25s%22">Can't declare %s in ``%s''</A></STRONG><BR>
  729. <DD>
  730. (F) Only scalar, array, and hash variables may be declared as ``my'' or
  731. ``our'' variables.  They must have ordinary identifiers as names.
  732. <P></P>
  733. <DT><STRONG><A NAME="item_Can%27t_do_inplace_edit_on_%25s%3A_%25s">Can't do inplace edit on %s: %s</A></STRONG><BR>
  734. <DD>
  735. (S inplace) The creation of the new file failed for the indicated reason.
  736. <P></P>
  737. <DT><STRONG><A NAME="item_Can%27t_do_inplace_edit_without_backup">Can't do inplace edit without backup</A></STRONG><BR>
  738. <DD>
  739. (F) You're on a system such as MS-DOS that gets confused if you try reading
  740. from a deleted (but still opened) file.  You have to say <CODE>-i.bak</CODE>, or some
  741. such.
  742. <P></P>
  743. <DT><STRONG><A NAME="item_Can%27t_do_inplace_edit%3A_%25s_would_not_be_uniqu">Can't do inplace edit: %s would not be unique</A></STRONG><BR>
  744. <DD>
  745. (S inplace) Your filesystem does not support filenames longer than 14
  746. characters and Perl was unable to create a unique filename during
  747. inplace editing with the <STRONG>-i</STRONG> switch.  The file was ignored.
  748. <P></P>
  749. <DT><STRONG><A NAME="item_Can%27t_do_inplace_edit%3A_%25s_is_not_a_regular_f">Can't do inplace edit: %s is not a regular file</A></STRONG><BR>
  750. <DD>
  751. (S inplace) You tried to use the <STRONG>-i</STRONG> switch on a special file, such as a file in
  752. /dev, or a FIFO.  The file was ignored.
  753. <P></P>
  754. <DT><STRONG><A NAME="item_Can%27t_do_setegid%21">Can't do setegid!</A></STRONG><BR>
  755. <DD>
  756. (P) The <A HREF="#item_setegid"><CODE>setegid()</CODE></A> call failed for some reason in the setuid emulator
  757. of suidperl.
  758. <P></P>
  759. <DT><STRONG><A NAME="item_Can%27t_do_seteuid%21">Can't do seteuid!</A></STRONG><BR>
  760. <DD>
  761. (P) The setuid emulator of suidperl failed for some reason.
  762. <P></P>
  763. <DT><STRONG><A NAME="item_Can%27t_do_setuid">Can't do setuid</A></STRONG><BR>
  764. <DD>
  765. (F) This typically means that ordinary perl tried to exec suidperl to
  766. do setuid emulation, but couldn't exec it.  It looks for a name of the
  767. form sperl5.000 in the same directory that the perl executable resides
  768. under the name perl5.000, typically /usr/local/bin on Unix machines.
  769. If the file is there, check the execute permissions.  If it isn't, ask
  770. your sysadmin why he and/or she removed it.
  771. <P></P>
  772. <DT><STRONG><A NAME="item_Can%27t_do_waitpid_with_flags">Can't do waitpid with flags</A></STRONG><BR>
  773. <DD>
  774. (F) This machine doesn't have either <A HREF="../../lib/Pod/perlfunc.html#item_waitpid"><CODE>waitpid()</CODE></A> or wait4(), so only <A HREF="../../lib/Pod/perlfunc.html#item_waitpid"><CODE>waitpid()</CODE></A>
  775. without flags is emulated.
  776. <P></P>
  777. <DT><STRONG><A NAME="item_Can%27t_do_%7Bn%2Cm%7D_with_n_%3E_m">Can't do {n,m} with n > m</A></STRONG><BR>
  778. <DD>
  779. (F) Minima must be less than or equal to maxima.  If you really want
  780. your regexp to match something 0 times, just put {0}.  See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  781. <P></P>
  782. <DT><STRONG><A NAME="item_Can%27t_emulate_%2D%25s_on_%23%21_line">Can't emulate -%s on #! line</A></STRONG><BR>
  783. <DD>
  784. (F) The #! line specifies a switch that doesn't make sense at this point.
  785. For example, it'd be kind of silly to put a <STRONG>-x</STRONG> on the #! line.
  786. <P></P>
  787. <DT><STRONG><A NAME="item_Can%27t_exec_%22%25s%22%3A_%25s">Can't exec ``%s'': %s</A></STRONG><BR>
  788. <DD>
  789. (W exec) An system(), exec(), or piped open call could not execute the named
  790. program for the indicated reason.  Typical reasons include: the permissions
  791. were wrong on the file, the file wasn't found in <CODE>$ENV{PATH}</CODE>, the
  792. executable in question was compiled for another architecture, or the
  793. #! line in a script points to an interpreter that can't be run for
  794. similar reasons.  (Or maybe your system doesn't support #! at all.)
  795. <P></P>
  796. <DT><STRONG><A NAME="item_Can%27t_exec_%25s">Can't exec %s</A></STRONG><BR>
  797. <DD>
  798. (F) Perl was trying to execute the indicated program for you because that's
  799. what the #! line said.  If that's not what you wanted, you may need to
  800. mention ``perl'' on the #! line somewhere.
  801. <P></P>
  802. <DT><STRONG><A NAME="item_Can%27t_execute_%25s">Can't execute %s</A></STRONG><BR>
  803. <DD>
  804. (F) You used the <STRONG>-S</STRONG> switch, but the copies of the script to execute found
  805. in the PATH did not have correct permissions.
  806. <P></P>
  807. <DT><STRONG><A NAME="item_Can%27t_find_%25s_on_PATH%2C_%27%2E%27_not_in_PATH">Can't find %s on PATH, '.' not in PATH</A></STRONG><BR>
  808. <DD>
  809. (F) You used the <STRONG>-S</STRONG> switch, but the script to execute could not be found
  810. in the PATH, or at least not with the correct permissions.  The script
  811. exists in the current directory, but PATH prohibits running it.
  812. <P></P>
  813. <DT><STRONG><A NAME="item_Can%27t_find_%25s_on_PATH">Can't find %s on PATH</A></STRONG><BR>
  814. <DD>
  815. (F) You used the <STRONG>-S</STRONG> switch, but the script to execute could not be found
  816. in the PATH.
  817. <P></P>
  818. <DT><STRONG><A NAME="item_Can%27t_find_label_%25s">Can't find label %s</A></STRONG><BR>
  819. <DD>
  820. (F) You said to goto a label that isn't mentioned anywhere that it's possible
  821. for us to go to.  See <A HREF="../../lib/Pod/perlfunc.html#goto">goto in the perlfunc manpage</A>.
  822. <P></P>
  823. <DT><STRONG><A NAME="item_Can%27t_find_string_terminator_%25s_anywhere_befor">Can't find string terminator %s anywhere before EOF</A></STRONG><BR>
  824. <DD>
  825. (F) Perl strings can stretch over multiple lines.  This message means that
  826. the closing delimiter was omitted.  Because bracketed quotes count nesting
  827. levels, the following is missing its final parenthesis:
  828. <PRE>
  829.     print q(The character '(' starts a side comment.);</PRE>
  830. <P>If you're getting this error from a here-document, you may have 
  831. included unseen whitespace before or after your closing tag. A good 
  832. programmer's editor will have a way to help you find these characters.</P>
  833. <P></P>
  834. <DT><STRONG><A NAME="item_Can%27t_fork">Can't fork</A></STRONG><BR>
  835. <DD>
  836. (F) A fatal error occurred while trying to fork while opening a pipeline.
  837. <P></P>
  838. <DT><STRONG><A NAME="item_Can%27t_get_filespec_%2D_stale_stat_buffer%3F">Can't get filespec - stale stat buffer?</A></STRONG><BR>
  839. <DD>
  840. (S) A warning peculiar to VMS.  This arises because of the difference between
  841. access checks under VMS and under the Unix model Perl assumes.  Under VMS,
  842. access checks are done by filename, rather than by bits in the stat buffer, so
  843. that ACLs and other protections can be taken into account.  Unfortunately, Perl
  844. assumes that the stat buffer contains all the necessary information, and passes
  845. it, instead of the filespec, to the access checking routine.  It will try to
  846. retrieve the filespec using the device name and FID present in the stat buffer,
  847. but this works only if you haven't made a subsequent call to the CRTL <A HREF="../../lib/Pod/perlfunc.html#item_stat"><CODE>stat()</CODE></A>
  848. routine, because the device name is overwritten with each call.  If this warning
  849. appears, the name lookup failed, and the access checking routine gave up and
  850. returned FALSE, just to be conservative.  (Note: The access checking routine
  851. knows about the Perl <A HREF="../../lib/Pod/perlfunc.html#item_stat"><CODE>stat</CODE></A> operator and file tests, so you shouldn't ever
  852. see this warning in response to a Perl command; it arises only if some internal
  853. code takes stat buffers lightly.)
  854. <P></P>
  855. <DT><STRONG><A NAME="item_Can%27t_get_pipe_mailbox_device_name">Can't get pipe mailbox device name</A></STRONG><BR>
  856. <DD>
  857. (P) An error peculiar to VMS.  After creating a mailbox to act as a pipe, Perl
  858. can't retrieve its name for later use.
  859. <P></P>
  860. <DT><STRONG><A NAME="item_Can%27t_get_SYSGEN_parameter_value_for_MAXBUF">Can't get SYSGEN parameter value for MAXBUF</A></STRONG><BR>
  861. <DD>
  862. (P) An error peculiar to VMS.  Perl asked $GETSYI how big you want your
  863. mailbox buffers to be, and didn't get an answer.
  864. <P></P>
  865. <DT><STRONG><A NAME="item_Can%27t_goto_subroutine_outside_a_subroutine">Can't goto subroutine outside a subroutine</A></STRONG><BR>
  866. <DD>
  867. (F) The deeply magical ``goto subroutine'' call can only replace one subroutine
  868. call for another.  It can't manufacture one out of whole cloth.  In general
  869. you should be calling it out of only an AUTOLOAD routine anyway.  See
  870. <A HREF="../../lib/Pod/perlfunc.html#goto">goto in the perlfunc manpage</A>.
  871. <P></P>
  872. <DT><STRONG><A NAME="item_Can%27t_goto_subroutine_from_an_eval%2Dstring">Can't goto subroutine from an eval-string</A></STRONG><BR>
  873. <DD>
  874. (F) The ``goto subroutine'' call can't be used to jump out of an eval ``string''.
  875. (You can use it to jump out of an eval {BLOCK}, but you probably don't want to.)
  876. <P></P>
  877. <DT><STRONG><A NAME="item_Can%27t_ignore_signal_CHLD%2C_forcing_to_default">Can't ignore signal CHLD, forcing to default</A></STRONG><BR>
  878. <DD>
  879. (W signal) Perl has detected that it is being run with the SIGCHLD signal
  880. (sometimes known as SIGCLD) disabled.  Since disabling this signal
  881. will interfere with proper determination of exit status of child
  882. processes, Perl has reset the signal to its default value.
  883. This situation typically indicates that the parent program under
  884. which Perl may be running (e.g. cron) is being very careless.
  885. <P></P>
  886. <DT><STRONG><A NAME="item_Can%27t_localize_through_a_reference">Can't localize through a reference</A></STRONG><BR>
  887. <DD>
  888. (F) You said something like <CODE>local $$ref</CODE>, which Perl can't currently
  889. handle, because when it goes to restore the old value of whatever $ref
  890. pointed to after the scope of the <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> is finished, it can't be
  891. sure that $ref will still be a reference.
  892. <P></P>
  893. <DT><STRONG><A NAME="item_Can%27t_localize_lexical_variable_%25s">Can't localize lexical variable %s</A></STRONG><BR>
  894. <DD>
  895. (F) You used local on a variable name that was previously declared as a
  896. lexical variable using ``my''.  This is not allowed.  If you want to
  897. localize a package variable of the same name, qualify it with the
  898. package name.
  899. <P></P>
  900. <DT><STRONG><A NAME="item_Can%27t_localize_pseudo%2Dhash_element">Can't localize pseudo-hash element</A></STRONG><BR>
  901. <DD>
  902. (F) You said something like <CODE>local $ar->{'key'}</CODE>, where $ar is
  903. a reference to a pseudo-hash.  That hasn't been implemented yet, but
  904. you can get a similar effect by localizing the corresponding array
  905. element directly -- <CODE>local $ar->[$ar->[0]{'key'}]</CODE>.
  906. <P></P>
  907. <DT><STRONG><A NAME="item_Can%27t_locate_auto%2F%25s%2Eal_in_%40INC">Can't locate auto/%s.al in @INC</A></STRONG><BR>
  908. <DD>
  909. (F) A function (or method) was called in a package which allows autoload,
  910. but there is no function to autoload.  Most probable causes are a misprint
  911. in a function/method name or a failure to <CODE>AutoSplit</CODE> the file, say, by
  912. doing <CODE>make install</CODE>.
  913. <P></P>
  914. <DT><STRONG><A NAME="item_Can%27t_locate_%25s">Can't locate %s</A></STRONG><BR>
  915. <DD>
  916. (F) You said to <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A> (or <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A>) a file that couldn't be
  917. found. Perl looks for the file in all the locations mentioned in @INC,
  918. unless the file name included the full path to the file.  Perhaps you need
  919. to set the PERL5LIB or PERL5OPT environment variable to say where the extra
  920. library is, or maybe the script needs to add the library name to @INC.  Or
  921. maybe you just misspelled the name of the file.  See <A HREF="../../lib/Pod/perlfunc.html#require">require in the perlfunc manpage</A>
  922. and <A HREF="../../lib/lib.html">the lib manpage</A>.
  923. <P></P>
  924. <DT><STRONG><A NAME="item_Can%27t_locate_object_method_%22%25s%22_via_packag">Can't locate object method ``%s'' via package ``%s''</A></STRONG><BR>
  925. <DD>
  926. (F) You called a method correctly, and it correctly indicated a package
  927. functioning as a class, but that package doesn't define that particular
  928. method, nor does any of its base classes.  See <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>.
  929. <P></P>
  930. <DT><STRONG><A NAME="item_Can%27t_locate_package_%25s_for_%40%25s%3A%3AISA">Can't locate package %s for @%s::ISA</A></STRONG><BR>
  931. <DD>
  932. (W syntax) The @ISA array contained the name of another package that doesn't seem
  933. to exist.
  934. <P></P>
  935. <DT><STRONG><A NAME="item_Can%27t_make_list_assignment_to_%5C%25ENV_on_this_">Can't make list assignment to \%ENV on this system</A></STRONG><BR>
  936. <DD>
  937. (F) List assignment to %ENV is not supported on some systems, notably VMS.
  938. <P></P>
  939. <DT><STRONG><A NAME="item_Can%27t_modify_%25s_in_%25s">Can't modify %s in %s</A></STRONG><BR>
  940. <DD>
  941. (F) You aren't allowed to assign to the item indicated, or otherwise try to
  942. change it, such as with an auto-increment.
  943. <P></P>
  944. <DT><STRONG><A NAME="item_Can%27t_modify_non%2Dlvalue_subroutine_call">Can't modify non-lvalue subroutine call</A></STRONG><BR>
  945. <DD>
  946. (F) Subroutines meant to be used in lvalue context should be declared as
  947. such, see <A HREF="../../lib/Pod/perlsub.html#lvalue subroutines">Lvalue subroutines in the perlsub manpage</A>.
  948. <P></P>
  949. <DT><STRONG><A NAME="item_Can%27t_modify_nonexistent_substring">Can't modify nonexistent substring</A></STRONG><BR>
  950. <DD>
  951. (P) The internal routine that does assignment to a <A HREF="../../lib/Pod/perlfunc.html#item_substr"><CODE>substr()</CODE></A> was handed
  952. a NULL.
  953. <P></P>
  954. <DT><STRONG><A NAME="item_Can%27t_msgrcv_to_read%2Donly_var">Can't msgrcv to read-only var</A></STRONG><BR>
  955. <DD>
  956. (F) The target of a msgrcv must be modifiable to be used as a receive
  957. buffer.
  958. <P></P>
  959. <DT><STRONG><A NAME="item_Can%27t_open_%25s%3A_%25s">Can't open %s: %s</A></STRONG><BR>
  960. <DD>
  961. (S inplace) The implicit opening of a file through use of the <CODE><></CODE>
  962. filehandle, either implicitly under the <CODE>-n</CODE> or <CODE>-p</CODE> command-line
  963. switches, or explicitly, failed for the indicated reason.  Usually this
  964. is because you don't have read permission for a file which you named
  965. on the command line.
  966. <P></P>
  967. <DT><STRONG><A NAME="item_Can%27t_open_bidirectional_pipe">Can't open bidirectional pipe</A></STRONG><BR>
  968. <DD>
  969. (W pipe) You tried to say <A HREF="#item_open"><CODE>open(CMD, "|cmd|")</CODE></A>, which is not supported.  You can
  970. try any of several modules in the Perl library to do this, such as
  971. IPC::Open2.  Alternately, direct the pipe's output to a file using ``>'',
  972. and then read it in under a different file handle.
  973. <P></P>
  974. <DT><STRONG><A NAME="item_Can%27t_open_error_file_%25s_as_stderr">Can't open error file %s as stderr</A></STRONG><BR>
  975. <DD>
  976. (F) An error peculiar to VMS.  Perl does its own command line redirection, and
  977. couldn't open the file specified after '2>' or '2>>' on the
  978. command line for writing.
  979. <P></P>
  980. <DT><STRONG><A NAME="item_Can%27t_open_input_file_%25s_as_stdin">Can't open input file %s as stdin</A></STRONG><BR>
  981. <DD>
  982. (F) An error peculiar to VMS.  Perl does its own command line redirection, and
  983. couldn't open the file specified after '<' on the command line for reading.
  984. <P></P>
  985. <DT><STRONG><A NAME="item_Can%27t_open_output_file_%25s_as_stdout">Can't open output file %s as stdout</A></STRONG><BR>
  986. <DD>
  987. (F) An error peculiar to VMS.  Perl does its own command line redirection, and
  988. couldn't open the file specified after '>' or '>>' on the command
  989. line for writing.
  990. <P></P>
  991. <DT><STRONG><A NAME="item_pipe">Can't open output pipe (name: %s)</A></STRONG><BR>
  992. <DD>
  993. (P) An error peculiar to VMS.  Perl does its own command line redirection, and
  994. couldn't open the pipe into which to send data destined for stdout.
  995. <P></P>
  996. <DT><STRONG><A NAME="item_Can%27t_open_perl_script_%22%25s%22%3A_%25s">Can't open perl script ``%s'': %s</A></STRONG><BR>
  997. <DD>
  998. (F) The script you specified can't be opened for the indicated reason.
  999. <P></P>
  1000. <DT><STRONG><A NAME="item_Can%27t_redefine_active_sort_subroutine_%25s">Can't redefine active sort subroutine %s</A></STRONG><BR>
  1001. <DD>
  1002. (F) Perl optimizes the internal handling of sort subroutines and keeps
  1003. pointers into them.  You tried to redefine one such sort subroutine when it
  1004. was currently active, which is not allowed.  If you really want to do
  1005. this, you should write <CODE>sort { &func } @x</CODE> instead of <CODE>sort func @x</CODE>.
  1006. <P></P>
  1007. <DT><STRONG><A NAME="item_Can%27t_remove_%25s%3A_%25s%2C_skipping_file">Can't remove %s: %s, skipping file</A></STRONG><BR>
  1008. <DD>
  1009. (S inplace) You requested an inplace edit without creating a backup file.  Perl
  1010. was unable to remove the original file to replace it with the modified
  1011. file.  The file was left unmodified.
  1012. <P></P>
  1013. <DT><STRONG><A NAME="item_Can%27t_rename_%25s_to_%25s%3A_%25s%2C_skipping_fi">Can't rename %s to %s: %s, skipping file</A></STRONG><BR>
  1014. <DD>
  1015. (S inplace) The rename done by the <STRONG>-i</STRONG> switch failed for some reason,
  1016. probably because you don't have write permission to the directory.
  1017. <P></P>
  1018. <DT><STRONG>Can't reopen input pipe (name: %s) in binary mode</STRONG><BR>
  1019. <DD>
  1020. (P) An error peculiar to VMS.  Perl thought stdin was a pipe, and tried to
  1021. reopen it to accept binary data.  Alas, it failed.
  1022. <P></P>
  1023. <DT><STRONG><A NAME="item_Can%27t_reswap_uid_and_euid">Can't reswap uid and euid</A></STRONG><BR>
  1024. <DD>
  1025. (P) The <CODE>setreuid()</CODE> call failed for some reason in the setuid emulator
  1026. of suidperl.
  1027. <P></P>
  1028. <DT><STRONG><A NAME="item_Can%27t_return_outside_a_subroutine">Can't return outside a subroutine</A></STRONG><BR>
  1029. <DD>
  1030. (F) The return statement was executed in mainline code, that is, where
  1031. there was no subroutine call to return out of.  See <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A>.
  1032. <P></P>
  1033. <DT><STRONG><A NAME="item_Can%27t_return_%25s_from_lvalue_subroutine">Can't return %s from lvalue subroutine</A></STRONG><BR>
  1034. <DD>
  1035. (F) Perl detected an attempt to return illegal lvalues (such
  1036. as temporary or readonly values) from a subroutine used as an lvalue.
  1037. This is not allowed.
  1038. <P></P>
  1039. <DT><STRONG><A NAME="item_Can%27t_stat_script_%22%25s%22">Can't stat script ``%s''</A></STRONG><BR>
  1040. <DD>
  1041. (P) For some reason you can't <CODE>fstat()</CODE> the script even though you have
  1042. it open already.  Bizarre.
  1043. <P></P>
  1044. <DT><STRONG><A NAME="item_Can%27t_swap_uid_and_euid">Can't swap uid and euid</A></STRONG><BR>
  1045. <DD>
  1046. (P) The <CODE>setreuid()</CODE> call failed for some reason in the setuid emulator
  1047. of suidperl.
  1048. <P></P>
  1049. <DT><STRONG><A NAME="item_Can%27t_take_log_of_%25g">Can't take log of %g</A></STRONG><BR>
  1050. <DD>
  1051. (F) For ordinary real numbers, you can't take the logarithm of a
  1052. negative number or zero. There's a Math::Complex package that comes
  1053. standard with Perl, though, if you really want to do that for
  1054. the negative numbers.
  1055. <P></P>
  1056. <DT><STRONG><A NAME="item_Can%27t_take_sqrt_of_%25g">Can't take sqrt of %g</A></STRONG><BR>
  1057. <DD>
  1058. (F) For ordinary real numbers, you can't take the square root of a
  1059. negative number.  There's a Math::Complex package that comes standard
  1060. with Perl, though, if you really want to do that.
  1061. <P></P>
  1062. <DT><STRONG><A NAME="item_Can%27t_undef_active_subroutine">Can't undef active subroutine</A></STRONG><BR>
  1063. <DD>
  1064. (F) You can't undefine a routine that's currently running.  You can,
  1065. however, redefine it while it's running, and you can even undef the
  1066. redefined subroutine while the old routine is running.  Go figure.
  1067. <P></P>
  1068. <DT><STRONG><A NAME="item_Can%27t_unshift">Can't unshift</A></STRONG><BR>
  1069. <DD>
  1070. (F) You tried to unshift an ``unreal'' array that can't be unshifted, such
  1071. as the main Perl stack.
  1072. <P></P>
  1073. <DT><STRONG><A NAME="item_Can%27t_upgrade_that_kind_of_scalar">Can't upgrade that kind of scalar</A></STRONG><BR>
  1074. <DD>
  1075. (P) The internal sv_upgrade routine adds ``members'' to an SV, making
  1076. it into a more specialized kind of SV.  The top several SV types are
  1077. so specialized, however, that they cannot be interconverted.  This
  1078. message indicates that such a conversion was attempted.
  1079. <P></P>
  1080. <DT><STRONG><A NAME="item_Can%27t_upgrade_to_undef">Can't upgrade to undef</A></STRONG><BR>
  1081. <DD>
  1082. (P) The undefined SV is the bottom of the totem pole, in the scheme
  1083. of upgradability.  Upgrading to undef indicates an error in the
  1084. code calling sv_upgrade.
  1085. <P></P>
  1086. <DT><STRONG><A NAME="item_Can%27t_use_%25%25%21_because_Errno%2Epm_is_not_av">Can't use %%! because Errno.pm is not available</A></STRONG><BR>
  1087. <DD>
  1088. (F) The first time the %! hash is used, perl automatically loads the
  1089. Errno.pm module. The Errno module is expected to tie the %! hash to
  1090. provide symbolic names for <CODE>$!</CODE> errno values.
  1091. <P></P>
  1092. <DT><STRONG><A NAME="item_Can%27t_use_%22my_%25s%22_in_sort_comparison">Can't use ``my %s'' in sort comparison</A></STRONG><BR>
  1093. <DD>
  1094. (F) The global variables $a and $b are reserved for sort comparisons.
  1095. You mentioned $a or $b in the same line as the <=> or cmp operator,
  1096. and the variable had earlier been declared as a lexical variable.
  1097. Either qualify the sort variable with the package name, or rename the
  1098. lexical variable.
  1099. <P></P>
  1100. <DT><STRONG><A NAME="item_Can%27t_use_%25s_for_loop_variable">Can't use %s for loop variable</A></STRONG><BR>
  1101. <DD>
  1102. (F) Only a simple scalar variable may be used as a loop variable on a foreach.
  1103. <P></P>
  1104. <DT><STRONG><A NAME="item_Can%27t_use_%25s_ref_as_%25s_ref">Can't use %s ref as %s ref</A></STRONG><BR>
  1105. <DD>
  1106. (F) You've mixed up your reference types.  You have to dereference a
  1107. reference of the type needed.  You can use the <A HREF="../../lib/Pod/perlfunc.html#item_ref"><CODE>ref()</CODE></A> function to
  1108. test the type of the reference, if need be.
  1109. <P></P>
  1110. <DT><STRONG><A NAME="item_Can%27t_use_%5C%25c_to_mean_%24%25c_in_expression">Can't use \%c to mean $%c in expression</A></STRONG><BR>
  1111. <DD>
  1112. (W syntax) In an ordinary expression, backslash is a unary operator that creates
  1113. a reference to its argument.  The use of backslash to indicate a backreference
  1114. to a matched substring is valid only as part of a regular expression pattern.
  1115. Trying to do this in ordinary Perl code produces a value that prints
  1116. out looking like SCALAR(0xdecaf).  Use the $1 form instead.
  1117. <P></P>
  1118. <DT><STRONG><A NAME="item_bareword">Can't use bareword (``%s'') as %s ref while ``strict refs'' in use</A></STRONG><BR>
  1119. <DD>
  1120. (F) Only hard references are allowed by ``strict refs''.  Symbolic references
  1121. are disallowed.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  1122. <P></P>
  1123. <DT><STRONG><A NAME="item_string">Can't use string (``%s'') as %s ref while ``strict refs'' in use</A></STRONG><BR>
  1124. <DD>
  1125. (F) Only hard references are allowed by ``strict refs''.  Symbolic references
  1126. are disallowed.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  1127. <P></P>
  1128. <DT><STRONG><A NAME="item_Can%27t_use_an_undefined_value_as_%25s_reference">Can't use an undefined value as %s reference</A></STRONG><BR>
  1129. <DD>
  1130. (F) A value used as either a hard reference or a symbolic reference must
  1131. be a defined value.  This helps to delurk some insidious errors.
  1132. <P></P>
  1133. <DT><STRONG><A NAME="item_Can%27t_use_global_%25s_in_%22my%22">Can't use global %s in ``my''</A></STRONG><BR>
  1134. <DD>
  1135. (F) You tried to declare a magical variable as a lexical variable.  This is
  1136. not allowed, because the magic can be tied to only one location (namely
  1137. the global variable) and it would be incredibly confusing to have
  1138. variables in your program that looked like magical variables but
  1139. weren't.
  1140. <P></P>
  1141. <DT><STRONG><A NAME="item_Can%27t_use_subscript_on_%25s">Can't use subscript on %s</A></STRONG><BR>
  1142. <DD>
  1143. (F) The compiler tried to interpret a bracketed expression as a
  1144. subscript.  But to the left of the brackets was an expression that
  1145. didn't look like an array reference, or anything else subscriptable.
  1146. <P></P>
  1147. <DT><STRONG><A NAME="item_Can%27t_weaken_a_nonreference">Can't weaken a nonreference</A></STRONG><BR>
  1148. <DD>
  1149. (F) You attempted to weaken something that was not a reference.  Only
  1150. references can be weakened.
  1151. <P></P>
  1152. <DT><STRONG><A NAME="item_Can%27t_x%3D_to_read%2Donly_value">Can't x= to read-only value</A></STRONG><BR>
  1153. <DD>
  1154. (F) You tried to repeat a constant value (often the undefined value) with
  1155. an assignment operator, which implies modifying the value itself.
  1156. Perhaps you need to copy the value to a temporary, and repeat that.
  1157. <P></P>
  1158. <DT><STRONG><A NAME="item_Can%27t_find_an_opnumber_for_%22%25s%22">Can't find an opnumber for ``%s''</A></STRONG><BR>
  1159. <DD>
  1160. (F) A string of a form <CODE>CORE::word</CODE> was given to prototype(), but
  1161. there is no builtin with the name <CODE>word</CODE>.
  1162. <P></P>
  1163. <DT><STRONG><A NAME="item_Can%27t_resolve_method_%60%25s%27_overloading_%60%">Can't resolve method `%s' overloading `%s' in package `%s'</A></STRONG><BR>
  1164. <DD>
  1165. (F|P) Error resolving overloading specified by a method name (as
  1166. opposed to a subroutine reference): no such method callable via the
  1167. package. If method name is <CODE>???</CODE>, this is an internal error.
  1168. <P></P>
  1169. <DT><STRONG><A NAME="item_Character_class_%5B%3A%25s%3A%5D_unknown">Character class [:%s:] unknown</A></STRONG><BR>
  1170. <DD>
  1171. (F) The class in the character class [: :] syntax is unknown.
  1172. See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  1173. <P></P>
  1174. <DT><STRONG><A NAME="item_Character_class_syntax_%5B%25s%5D_belongs_inside_c">Character class syntax [%s] belongs inside character classes</A></STRONG><BR>
  1175. <DD>
  1176. (W unsafe) The character class constructs [: :], [= =], and [. .]  go
  1177. <EM>inside</EM> character classes, the [] are part of the construct,
  1178. for example: /[012[:alpha:]345]/.  Note that [= =] and [. .]
  1179. are not currently implemented; they are simply placeholders for
  1180. future extensions.
  1181. <P></P>
  1182. <DT><STRONG><A NAME="item_Character_class_syntax_%5B%2E_%2E%5D_is_reserved_f">Character class syntax [. .] is reserved for future extensions</A></STRONG><BR>
  1183. <DD>
  1184. (W regexp) Within regular expression character classes ([]) the syntax beginning
  1185. with ``[.'' and ending with ``.]'' is reserved for future extensions.
  1186. If you need to represent those character sequences inside a regular
  1187. expression character class, just quote the square brackets with the
  1188. backslash: ``\[.'' and ``.\]''.
  1189. <P></P>
  1190. <DT><STRONG><A NAME="item_Character_class_syntax_%5B%3D_%3D%5D_is_reserved_f">Character class syntax [= =] is reserved for future extensions</A></STRONG><BR>
  1191. <DD>
  1192. (W regexp) Within regular expression character classes ([]) the syntax
  1193. beginning with ``[='' and ending with ``=]'' is reserved for future extensions.
  1194. If you need to represent those character sequences inside a regular
  1195. expression character class, just quote the square brackets with the
  1196. backslash: ``\[='' and ``=\]''.
  1197. <P></P>
  1198. <DT><STRONG><A NAME="item_chmod"><CODE>chmod()</CODE> mode argument is missing initial 0</A></STRONG><BR>
  1199. <DD>
  1200. (W chmod) A novice will sometimes say
  1201. <PRE>
  1202.     chmod 777, $filename</PRE>
  1203. <P>not realizing that 777 will be interpreted as a decimal number, equivalent
  1204. to 01411.  Octal constants are introduced with a leading 0 in Perl, as in C.</P>
  1205. <P></P>
  1206. <DT><STRONG><A NAME="item_Close_on_unopened_file_%3C%25s%3E">Close on unopened file <%s></A></STRONG><BR>
  1207. <DD>
  1208. (W unopened) You tried to close a filehandle that was never opened.
  1209. <P></P>
  1210. <DT><STRONG><A NAME="item_Compilation_failed_in_require">Compilation failed in require</A></STRONG><BR>
  1211. <DD>
  1212. (F) Perl could not compile a file specified in a <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> statement.
  1213. Perl uses this generic message when none of the errors that it encountered
  1214. were severe enough to halt compilation immediately.
  1215. <P></P>
  1216. <DT><STRONG><A NAME="item_limit">Complex regular subexpression recursion limit (%d) exceeded</A></STRONG><BR>
  1217. <DD>
  1218. (W regexp) The regular expression engine uses recursion in complex situations
  1219. where back-tracking is required.  Recursion depth is limited to 32766,
  1220. or perhaps less in architectures where the stack cannot grow
  1221. arbitrarily.  (``Simple'' and ``medium'' situations are handled without
  1222. recursion and are not subject to a limit.)  Try shortening the string
  1223. under examination; looping in Perl code (e.g. with <CODE>while</CODE>) rather
  1224. than in the regular expression engine; or rewriting the regular
  1225. expression so that it is simpler or backtracks less.  (See <A HREF="../../lib/Pod/perlbook.html">the perlbook manpage</A>
  1226. for information on <EM>Mastering Regular Expressions</EM>.)
  1227. <P></P>
  1228. <DT><STRONG><A NAME="item_connect"><CODE>connect()</CODE> on closed socket %s</A></STRONG><BR>
  1229. <DD>
  1230. (W closed) You tried to do a connect on a closed socket.  Did you forget to check
  1231. the return value of your <A HREF="../../lib/Pod/perlfunc.html#item_socket"><CODE>socket()</CODE></A> call?  See <A HREF="../../lib/Pod/perlfunc.html#connect">connect in the perlfunc manpage</A>.
  1232. <P></P>
  1233. <DT><STRONG><A NAME="item_Constant_is_not_%25s_reference">Constant is not %s reference</A></STRONG><BR>
  1234. <DD>
  1235. (F) A constant value (perhaps declared using the <CODE>use constant</CODE> pragma)
  1236. is being dereferenced, but it amounts to the wrong type of reference.  The
  1237. message indicates the type of reference that was expected. This usually
  1238. indicates a syntax error in dereferencing the constant value.
  1239. See <A HREF="../../lib/Pod/perlsub.html#constant functions">Constant Functions in the perlsub manpage</A> and <A HREF="../../lib/constant.html">the constant manpage</A>.
  1240. <P></P>
  1241. <DT><STRONG><A NAME="item_Constant_subroutine_%25s_redefined">Constant subroutine %s redefined</A></STRONG><BR>
  1242. <DD>
  1243. (S|W redefine) You redefined a subroutine which had previously been eligible for
  1244. inlining.  See <A HREF="../../lib/Pod/perlsub.html#constant functions">Constant Functions in the perlsub manpage</A> for commentary and
  1245. workarounds.
  1246. <P></P>
  1247. <DT><STRONG><A NAME="item_Constant_subroutine_%25s_undefined">Constant subroutine %s undefined</A></STRONG><BR>
  1248. <DD>
  1249. (W misc) You undefined a subroutine which had previously been eligible for
  1250. inlining.  See <A HREF="../../lib/Pod/perlsub.html#constant functions">Constant Functions in the perlsub manpage</A> for commentary and
  1251. workarounds.
  1252. <P></P>
  1253. <DT><STRONG><A NAME="item_constant">constant(%s): %s</A></STRONG><BR>
  1254. <DD>
  1255. (F) The parser found inconsistencies either while attempting to define an
  1256. overloaded constant, or when trying to find the character name specified
  1257. in the <CODE>\N{...}</CODE> escape.  Perhaps you forgot to load the corresponding
  1258. <CODE>overload</CODE> or <CODE>charnames</CODE> pragma?  See <A HREF="../../lib/charnames.html">the charnames manpage</A> and <A HREF="../../lib/overload.html">the overload manpage</A>.
  1259. <P></P>
  1260. <DT><STRONG><A NAME="item_Copy_method_did_not_return_a_reference">Copy method did not return a reference</A></STRONG><BR>
  1261. <DD>
  1262. (F) The method which overloads ``='' is buggy. See <A HREF="../../lib/overload.html#copy constructor">Copy Constructor in the overload manpage</A>.
  1263. <P></P>
  1264. <DT><STRONG><A NAME="item_CORE%3A%3A%25s_is_not_a_keyword">CORE::%s is not a keyword</A></STRONG><BR>
  1265. <DD>
  1266. (F) The CORE:: namespace is reserved for Perl keywords.
  1267. <P></P>
  1268. <DT><STRONG><A NAME="item_Corrupt_malloc_ptr_0x%25lx_at_0x%25lx">Corrupt malloc ptr 0x%lx at 0x%lx</A></STRONG><BR>
  1269. <DD>
  1270. (P) The malloc package that comes with Perl had an internal failure.
  1271. <P></P>
  1272. <DT><STRONG><A NAME="item_corrupted_regexp_pointers">corrupted regexp pointers</A></STRONG><BR>
  1273. <DD>
  1274. (P) The regular expression engine got confused by what the regular
  1275. expression compiler gave it.
  1276. <P></P>
  1277. <DT><STRONG><A NAME="item_corrupted_regexp_program">corrupted regexp program</A></STRONG><BR>
  1278. <DD>
  1279. (P) The regular expression engine got passed a regexp program without
  1280. a valid magic number.
  1281. <P></P>
  1282. <DT><STRONG><A NAME="item_Deep_recursion_on_subroutine_%22%25s%22">Deep recursion on subroutine ``%s''</A></STRONG><BR>
  1283. <DD>
  1284. (W recursion) This subroutine has called itself (directly or indirectly) 100
  1285. times more than it has returned.  This probably indicates an infinite
  1286. recursion, unless you're writing strange benchmark programs, in which
  1287. case it indicates something else.
  1288. <P></P>
  1289. <DT><STRONG><A NAME="item_defined"><CODE>defined(@array)</CODE> is deprecated</A></STRONG><BR>
  1290. <DD>
  1291. (D deprecated) <A HREF="#item_defined"><CODE>defined()</CODE></A> is not usually useful on arrays because it checks for an
  1292. undefined <EM>scalar</EM> value.  If you want to see if the array is empty,
  1293. just use <CODE>if (@array) { # not empty }</CODE> for example.
  1294. <P></P>
  1295. <DT><STRONG><CODE>defined(%hash)</CODE> is deprecated</STRONG><BR>
  1296. <DD>
  1297. (D deprecated) <A HREF="#item_defined"><CODE>defined()</CODE></A> is not usually useful on hashes because it checks for an
  1298. undefined <EM>scalar</EM> value.  If you want to see if the hash is empty,
  1299. just use <CODE>if (%hash) { # not empty }</CODE> for example.
  1300. <P></P>
  1301. <DT><STRONG><A NAME="item_Delimiter_for_here_document_is_too_long">Delimiter for here document is too long</A></STRONG><BR>
  1302. <DD>
  1303. (F) In a here document construct like <CODE><<FOO</CODE>, the label
  1304. <CODE>FOO</CODE> is too long for Perl to handle.  You have to be seriously
  1305. twisted to write code that triggers this error.
  1306. <P></P>
  1307. <DT><STRONG><A NAME="item_Did_not_produce_a_valid_header">Did not produce a valid header</A></STRONG><BR>
  1308. <DD>
  1309. See Server error.
  1310. <P></P>
  1311. <DT><STRONG><A NAME="item_%28Did_you_mean_%26%25s_instead%3F%29">(Did you mean &%s instead?)</A></STRONG><BR>
  1312. <DD>
  1313. (W) You probably referred to an imported subroutine &FOO as $FOO or some such.
  1314. <P></P>
  1315. <DT><STRONG><A NAME="item_%28Did_you_mean_%22local%22_instead_of_%22our%22%3">(Did you mean ``local'' instead of ``our''?)</A></STRONG><BR>
  1316. <DD>
  1317. (W misc) Remember that ``our'' does not localize the declared global variable.
  1318. You have declared it again in the same lexical scope, which seems superfluous.
  1319. <P></P>
  1320. <DT><STRONG><A NAME="item_%28Did_you_mean_%24_or_%40_instead_of_%25%3F%29">(Did you mean $ or @ instead of %?)</A></STRONG><BR>
  1321. <DD>
  1322. (W) You probably said %hash{$key} when you meant $hash{$key} or @hash{@keys}.
  1323. On the other hand, maybe you just meant %hash and got carried away.
  1324. <P></P>
  1325. <DT><STRONG><A NAME="item_Died">Died</A></STRONG><BR>
  1326. <DD>
  1327. (F) You passed <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die()</CODE></A> an empty string (the equivalent of <CODE>die ""</CODE>) or
  1328. you called it with no args and both <CODE>$@</CODE> and <CODE>$_</CODE> were empty.
  1329. <P></P>
  1330. <DT><STRONG><A NAME="item_%28Do_you_need_to_predeclare_%25s%3F%29">(Do you need to predeclare %s?)</A></STRONG><BR>
  1331. <DD>
  1332. (S) This is an educated guess made in conjunction with the message ``%s
  1333. found where operator expected''.  It often means a subroutine or module
  1334. name is being referenced that hasn't been declared yet.  This may be
  1335. because of ordering problems in your file, or because of a missing
  1336. ``sub'', ``package'', ``require'', or ``use'' statement.  If you're
  1337. referencing something that isn't defined yet, you don't actually have
  1338. to define the subroutine or package before the current location.  You
  1339. can use an empty ``sub foo;'' or ``package FOO;'' to enter a ``forward''
  1340. declaration.
  1341. <P></P>
  1342. <DT><STRONG><A NAME="item_Document_contains_no_data">Document contains no data</A></STRONG><BR>
  1343. <DD>
  1344. See Server error.
  1345. <P></P>
  1346. <DT><STRONG><A NAME="item_Don%27t_know_how_to_handle_magic_of_type_%27%25s%2">Don't know how to handle magic of type '%s'</A></STRONG><BR>
  1347. <DD>
  1348. (P) The internal handling of magical variables has been cursed.
  1349. <P></P>
  1350. <DT><STRONG><A NAME="item_do_study%3A_out_of_memory">do_study: out of memory</A></STRONG><BR>
  1351. <DD>
  1352. (P) This should have been caught by <CODE>safemalloc()</CODE> instead.
  1353. <P></P>
  1354. <DT><STRONG>Duplicate <CODE>free()</CODE> ignored</STRONG><BR>
  1355. <DD>
  1356. (S malloc) An internal routine called <A HREF="#item_free"><CODE>free()</CODE></A> on something that had already
  1357. been freed.
  1358. <P></P>
  1359. <DT><STRONG><A NAME="item_elseif_should_be_elsif">elseif should be elsif</A></STRONG><BR>
  1360. <DD>
  1361. (S) There is no keyword ``elseif'' in Perl because Larry thinks it's
  1362. ugly.  Your code will be interpreted as an attempt to call a method
  1363. named ``elseif'' for the class returned by the following block.  This is
  1364. unlikely to be what you want.
  1365. <P></P>
  1366. <DT><STRONG>%s failed--call queue aborted</STRONG><BR>
  1367. <DD>
  1368. (F) An untrapped exception was raised while executing a CHECK, INIT, or
  1369. END subroutine.  Processing of the remainder of the queue of such
  1370. routines has been prematurely ended.
  1371. <P></P>
  1372. <DT><STRONG><A NAME="item_entering_effective_%25s_failed">entering effective %s failed</A></STRONG><BR>
  1373. <DD>
  1374. (F) While under the <CODE>use filetest</CODE> pragma, switching the real and
  1375. effective uids or gids failed.
  1376. <P></P>
  1377. <DT><STRONG><A NAME="item_Error_converting_file_specification_%25s">Error converting file specification %s</A></STRONG><BR>
  1378. <DD>
  1379. (F) An error peculiar to VMS.  Because Perl may have to deal with file
  1380. specifications in either VMS or Unix syntax, it converts them to a
  1381. single form when it must operate on them directly.  Either you've
  1382. passed an invalid file specification to Perl, or you've found a
  1383. case the conversion routines don't handle.  Drat.
  1384. <P></P>
  1385. <DT><STRONG>%s: Eval-group in insecure regular expression</STRONG><BR>
  1386. <DD>
  1387. (F) Perl detected tainted data when trying to compile a regular expression
  1388. that contains the <CODE>(?{ ... })</CODE> zero-width assertion, which is unsafe.
  1389. See <A HREF="../../lib/Pod/perlre.html#({ code })">(?{ code }) in the perlre manpage</A>, and <A HREF="../../lib/Pod/perlsec.html">the perlsec manpage</A>.
  1390. <P></P>
  1391. <DT><STRONG>%s: Eval-group not allowed, use re 'eval'</STRONG><BR>
  1392. <DD>
  1393. (F) A regular expression contained the <CODE>(?{ ... })</CODE> zero-width assertion,
  1394. but that construct is only allowed when the <CODE>use re 'eval'</CODE> pragma is
  1395. in effect.  See <A HREF="../../lib/Pod/perlre.html#({ code })">(?{ code }) in the perlre manpage</A>.
  1396. <P></P>
  1397. <DT><STRONG>%s: Eval-group not allowed at run time</STRONG><BR>
  1398. <DD>
  1399. (F) Perl tried to compile a regular expression containing the <CODE>(?{ ... })</CODE>
  1400. zero-width assertion at run time, as it would when the pattern contains
  1401. interpolated values.  Since that is a security risk, it is not allowed.
  1402. If you insist, you may still do this by explicitly building the pattern
  1403. from an interpolated string at run time and using that in an eval().
  1404. See <A HREF="../../lib/Pod/perlre.html#({ code })">(?{ code }) in the perlre manpage</A>.
  1405. <P></P>
  1406. <DT><STRONG><A NAME="item_Excessively_long_%3C%3E_operator">Excessively long <> operator</A></STRONG><BR>
  1407. <DD>
  1408. (F) The contents of a <> operator may not exceed the maximum size of a
  1409. Perl identifier.  If you're just trying to glob a long list of
  1410. filenames, try using the <A HREF="../../lib/Pod/perlfunc.html#item_glob"><CODE>glob()</CODE></A> operator, or put the filenames into a
  1411. variable and glob that.
  1412. <P></P>
  1413. <DT><STRONG><A NAME="item_Execution_of_%25s_aborted_due_to_compilation_error">Execution of %s aborted due to compilation errors</A></STRONG><BR>
  1414. <DD>
  1415. (F) The final summary message when a Perl compilation fails.
  1416. <P></P>
  1417. <DT><STRONG><A NAME="item_Exiting_eval_via_%25s">Exiting eval via %s</A></STRONG><BR>
  1418. <DD>
  1419. (W exiting) You are exiting an eval by unconventional means, such as
  1420. a goto, or a loop control statement.
  1421. <P></P>
  1422. <DT><STRONG><A NAME="item_Exiting_format_via_%25s">Exiting format via %s</A></STRONG><BR>
  1423. <DD>
  1424. (W exiting) You are exiting an eval by unconventional means, such as
  1425. a goto, or a loop control statement.
  1426. <P></P>
  1427. <DT><STRONG><A NAME="item_Exiting_pseudo%2Dblock_via_%25s">Exiting pseudo-block via %s</A></STRONG><BR>
  1428. <DD>
  1429. (W exiting) You are exiting a rather special block construct (like a sort block or
  1430. subroutine) by unconventional means, such as a goto, or a loop control
  1431. statement.  See <A HREF="../../lib/Pod/perlfunc.html#sort">sort in the perlfunc manpage</A>.
  1432. <P></P>
  1433. <DT><STRONG><A NAME="item_Exiting_subroutine_via_%25s">Exiting subroutine via %s</A></STRONG><BR>
  1434. <DD>
  1435. (W exiting) You are exiting a subroutine by unconventional means, such as
  1436. a goto, or a loop control statement.
  1437. <P></P>
  1438. <DT><STRONG><A NAME="item_Exiting_substitution_via_%25s">Exiting substitution via %s</A></STRONG><BR>
  1439. <DD>
  1440. (W exiting) You are exiting a substitution by unconventional means, such as
  1441. a return, a goto, or a loop control statement.
  1442. <P></P>
  1443. <DT><STRONG><A NAME="item_Explicit_blessing_to_%27%27_%28assuming_package_ma">Explicit blessing to '' (assuming package main)</A></STRONG><BR>
  1444. <DD>
  1445. (W misc) You are blessing a reference to a zero length string.  This has
  1446. the effect of blessing the reference into the package main.  This is
  1447. usually not what you want.  Consider providing a default target
  1448. package, e.g. bless($ref, $p || 'MyPackage');
  1449. <P></P>
  1450. <DT><STRONG><A NAME="item_false_%5B%5D_range_%22%25s%22_in_regexp">false [] range ``%s'' in regexp</A></STRONG><BR>
  1451. <DD>
  1452. (W regexp) A character class range must start and end at a literal character, not
  1453. another character class like <CODE>\d</CODE> or <CODE>[:alpha:]</CODE>.  The ``-'' in your false
  1454. range is interpreted as a literal ``-''.  Consider quoting the ``-'',  ``\-''.
  1455. See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  1456. <P></P>
  1457. <DT><STRONG><A NAME="item_Fatal_VMS_error_at_%25s%2C_line_%25d">Fatal VMS error at %s, line %d</A></STRONG><BR>
  1458. <DD>
  1459. (P) An error peculiar to VMS.  Something untoward happened in a VMS system
  1460. service or RTL routine; Perl's exit status should provide more details.  The
  1461. filename in ``at %s'' and the line number in ``line %d'' tell you which section of
  1462. the Perl source code is distressed.
  1463. <P></P>
  1464. <DT><STRONG><A NAME="item_fcntl_is_not_implemented">fcntl is not implemented</A></STRONG><BR>
  1465. <DD>
  1466. (F) Your machine apparently doesn't implement fcntl().  What is this, a
  1467. PDP-11 or something?
  1468. <P></P>
  1469. <DT><STRONG><A NAME="item_Filehandle_%25s_never_opened">Filehandle %s never opened</A></STRONG><BR>
  1470. <DD>
  1471. (W unopened) An I/O operation was attempted on a filehandle that was never initialized.
  1472. You need to do an <A HREF="#item_open"><CODE>open()</CODE></A> or a <A HREF="../../lib/Pod/perlfunc.html#item_socket"><CODE>socket()</CODE></A> call, or call a constructor from
  1473. the FileHandle package.
  1474. <P></P>
  1475. <DT><STRONG><A NAME="item_Filehandle_%25s_opened_only_for_input">Filehandle %s opened only for input</A></STRONG><BR>
  1476. <DD>
  1477. (W io) You tried to write on a read-only filehandle.  If you
  1478. intended it to be a read-write filehandle, you needed to open it with
  1479. ``+<'' or ``+>'' or ``+>>'' instead of with ``<'' or nothing.  If
  1480. you intended only to write the file, use ``>'' or ``>>''.  See
  1481. <A HREF="../../lib/Pod/perlfunc.html#open">open in the perlfunc manpage</A>.
  1482. <P></P>
  1483. <DT><STRONG><A NAME="item_Filehandle_%25s_opened_only_for_output">Filehandle %s opened only for output</A></STRONG><BR>
  1484. <DD>
  1485. (W io) You tried to read from a filehandle opened only for writing.  If you
  1486. intended it to be a read/write filehandle, you needed to open it with
  1487. ``+<'' or ``+>'' or ``+>>'' instead of with ``<'' or nothing.  If
  1488. you intended only to read from the file, use ``<''.  See
  1489. <A HREF="../../lib/Pod/perlfunc.html#open">open in the perlfunc manpage</A>.
  1490. <P></P>
  1491. <DT><STRONG><A NAME="item_Final_%24_should_be_%5C%24_or_%24name">Final $ should be \$ or $name</A></STRONG><BR>
  1492. <DD>
  1493. (F) You must now decide whether the final $ in a string was meant to be
  1494. a literal dollar sign, or was meant to introduce a variable name
  1495. that happens to be missing.  So you have to put either the backslash or
  1496. the name.
  1497. <P></P>
  1498. <DT><STRONG><A NAME="item_Final_%40_should_be_%5C%40_or_%40name">Final @ should be \@ or @name</A></STRONG><BR>
  1499. <DD>
  1500. (F) You must now decide whether the final @ in a string was meant to be
  1501. a literal ``at'' sign, or was meant to introduce a variable name
  1502. that happens to be missing.  So you have to put either the backslash or
  1503. the name.
  1504. <P></P>
  1505. <DT><STRONG><A NAME="item_flock"><CODE>flock()</CODE> on closed filehandle %s</A></STRONG><BR>
  1506. <DD>
  1507. (W closed) The filehandle you're attempting to <A HREF="#item_flock"><CODE>flock()</CODE></A> got itself closed some
  1508. time before now.  Check your logic flow.  <A HREF="#item_flock"><CODE>flock()</CODE></A> operates on filehandles.
  1509. Are you attempting to call <A HREF="#item_flock"><CODE>flock()</CODE></A> on a dirhandle by the same name?
  1510. <P></P>
  1511. <DT><STRONG><A NAME="item_Format_%25s_redefined">Format %s redefined</A></STRONG><BR>
  1512. <DD>
  1513. (W redefine) You redefined a format.  To suppress this warning, say
  1514. <PRE>
  1515.     {
  1516.         no warnings;
  1517.         eval "format NAME =...";
  1518.     }</PRE>
  1519. <P></P>
  1520. <DT><STRONG><A NAME="item_Format_not_terminated">Format not terminated</A></STRONG><BR>
  1521. <DD>
  1522. (F) A format must be terminated by a line with a solitary dot.  Perl got
  1523. to the end of your file without finding such a line.
  1524. <P></P>
  1525. <DT><STRONG><A NAME="item_Found_%3D_in_conditional%2C_should_be_%3D%3D">Found = in conditional, should be ==</A></STRONG><BR>
  1526. <DD>
  1527. (W syntax) You said
  1528. <PRE>
  1529.     if ($foo = 123)</PRE>
  1530. <P>when you meant</P>
  1531. <PRE>
  1532.     if ($foo == 123)</PRE>
  1533. <P>(or something like that).</P>
  1534. <P></P>
  1535. <DT><STRONG><A NAME="item_gdbm_store_returned_%25d%2C_errno_%25d%2C_key_%22%">gdbm store returned %d, errno %d, key ``%s''</A></STRONG><BR>
  1536. <DD>
  1537. (S) A warning from the GDBM_File extension that a store failed.
  1538. <P></P>
  1539. <DT><STRONG><A NAME="item_gethostent_not_implemented">gethostent not implemented</A></STRONG><BR>
  1540. <DD>
  1541. (F) Your C library apparently doesn't implement gethostent(), probably
  1542. because if it did, it'd feel morally obligated to return every hostname
  1543. on the Internet.
  1544. <P></P>
  1545. <DT><STRONG><A NAME="item_sname">get%sname() on closed socket %s</A></STRONG><BR>
  1546. <DD>
  1547. (W closed) You tried to get a socket or peer socket name on a closed socket.
  1548. Did you forget to check the return value of your <A HREF="../../lib/Pod/perlfunc.html#item_socket"><CODE>socket()</CODE></A> call?
  1549. <P></P>
  1550. <DT><STRONG><A NAME="item_getpwnam_returned_invalid_UIC_%25%23o_for_user_%22">getpwnam returned invalid UIC %#o for user ``%s''</A></STRONG><BR>
  1551. <DD>
  1552. (S) A warning peculiar to VMS.  The call to <CODE>sys$getuai</CODE> underlying the
  1553. <A HREF="../../lib/Pod/perlfunc.html#item_getpwnam"><CODE>getpwnam</CODE></A> operator returned an invalid UIC.
  1554. <P></P>
  1555. <DT><STRONG><A NAME="item_failed">glob failed (%s)</A></STRONG><BR>
  1556. <DD>
  1557. (W glob) Something went wrong with the external <CODE>program(s)</CODE> used for <A HREF="../../lib/Pod/perlfunc.html#item_glob"><CODE>glob</CODE></A>
  1558. and <CODE><*.c></CODE>.  Usually, this means that you supplied a <A HREF="../../lib/Pod/perlfunc.html#item_glob"><CODE>glob</CODE></A>
  1559. pattern that caused the external program to fail and exit with a nonzero
  1560. status.  If the message indicates that the abnormal exit resulted in a
  1561. coredump, this may also mean that your csh (C shell) is broken.  If so,
  1562. you should change all of the csh-related variables in config.sh:  If you
  1563. have tcsh, make the variables refer to it as if it were csh (e.g.
  1564. <CODE>full_csh='/usr/bin/tcsh'</CODE>); otherwise, make them all empty (except that
  1565. <CODE>d_csh</CODE> should be <CODE>'undef'</CODE>) so that Perl will think csh is missing.
  1566. In either case, after editing config.sh, run <CODE>./Configure -S</CODE> and
  1567. rebuild Perl.
  1568. <P></P>
  1569. <DT><STRONG><A NAME="item_Glob_not_terminated">Glob not terminated</A></STRONG><BR>
  1570. <DD>
  1571. (F) The lexer saw a left angle bracket in a place where it was expecting
  1572. a term, so it's looking for the corresponding right angle bracket, and not
  1573. finding it.  Chances are you left some needed parentheses out earlier in
  1574. the line, and you really meant a ``less than''.
  1575. <P></P>
  1576. <DT><STRONG><A NAME="item_Global_symbol_%22%25s%22_requires_explicit_package">Global symbol ``%s'' requires explicit package name</A></STRONG><BR>
  1577. <DD>
  1578. (F) You've said ``use strict vars'', which indicates that all variables
  1579. must either be lexically scoped (using ``my''), declared beforehand using
  1580. ``our'', or explicitly qualified to say which package the global variable
  1581. is in (using ``::'').
  1582. <P></P>
  1583. <DT><STRONG><A NAME="item_goto_must_have_label">goto must have label</A></STRONG><BR>
  1584. <DD>
  1585. (F) Unlike with ``next'' or ``last'', you're not allowed to goto an
  1586. unspecified destination.  See <A HREF="../../lib/Pod/perlfunc.html#goto">goto in the perlfunc manpage</A>.
  1587. <P></P>
  1588. <DT><STRONG><A NAME="item_Had_to_create_%25s_unexpectedly">Had to create %s unexpectedly</A></STRONG><BR>
  1589. <DD>
  1590. (S internal) A routine asked for a symbol from a symbol table that ought to have
  1591. existed already, but for some reason it didn't, and had to be created on
  1592. an emergency basis to prevent a core dump.
  1593. <P></P>
  1594. <DT><STRONG>Hash %%s missing the % in argument %d of %s()</STRONG><BR>
  1595. <DD>
  1596. (D deprecated) Really old Perl let you omit the % on hash names in some spots.  This
  1597. is now heavily deprecated.
  1598. <P></P>
  1599. <DT><STRONG><A NAME="item_Hexadecimal_number_%3E_0xffffffff_non%2Dportable">Hexadecimal number > 0xffffffff non-portable</A></STRONG><BR>
  1600. <DD>
  1601. (W portable) The hexadecimal number you specified is larger than 2**32-1
  1602. (4294967295) and therefore non-portable between systems.  See
  1603. <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A> for more on portability concerns.
  1604. <P></P>
  1605. <DT><STRONG><A NAME="item_Identifier_too_long">Identifier too long</A></STRONG><BR>
  1606. <DD>
  1607. (F) Perl limits identifiers (names for variables, functions, etc.) to
  1608. about 250 characters for simple names, and somewhat more for compound
  1609. names (like <CODE>$A::B</CODE>).  You've exceeded Perl's limits.  Future
  1610. versions of Perl are likely to eliminate these arbitrary limitations.
  1611. <P></P>
  1612. <DT><STRONG><A NAME="item_Ill%2Dformed_CRTL_environ_value_%22%25s%22">Ill-formed CRTL environ value ``%s''</A></STRONG><BR>
  1613. <DD>
  1614. (W internal) A warning peculiar to VMS.  Perl tried to read the CRTL's internal
  1615. environ array, and encountered an element without the <CODE>=</CODE> delimiter
  1616. used to spearate keys from values.  The element is ignored.
  1617. <P></P>
  1618. <DT><STRONG><A NAME="item_Ill%2Dformed_message_in_prime_env_iter%3A_%7C%25s%">Ill-formed message in prime_env_iter: |%s|</A></STRONG><BR>
  1619. <DD>
  1620. (W internal) A warning peculiar to VMS.  Perl tried to read a logical name
  1621. or CLI symbol definition when preparing to iterate over %ENV, and
  1622. didn't see the expected delimiter between key and value, so the
  1623. line was ignored.
  1624. <P></P>
  1625. <DT><STRONG>Illegal character %s (carriage return)</STRONG><BR>
  1626. <DD>
  1627. (F) Perl normally treats carriage returns in the program text as it
  1628. would any other whitespace, which means you should never see this
  1629. error when Perl was built using standard options.  For some reason,
  1630. your version of Perl appears to have been built without this support.
  1631. Talk to your Perl administrator.
  1632. <P></P>
  1633. <DT><STRONG><A NAME="item_Illegal_division_by_zero">Illegal division by zero</A></STRONG><BR>
  1634. <DD>
  1635. (F) You tried to divide a number by 0.  Either something was wrong in your
  1636. logic, or you need to put a conditional in to guard against meaningless input.
  1637. <P></P>
  1638. <DT><STRONG><A NAME="item_Illegal_modulus_zero">Illegal modulus zero</A></STRONG><BR>
  1639. <DD>
  1640. (F) You tried to divide a number by 0 to get the remainder.  Most numbers
  1641. don't take to this kindly.
  1642. <P></P>
  1643. <DT><STRONG><A NAME="item_Illegal_binary_digit_%25s">Illegal binary digit %s</A></STRONG><BR>
  1644. <DD>
  1645. (F) You used a digit other than 0 or 1 in a binary number.
  1646. <P></P>
  1647. <DT><STRONG><A NAME="item_Illegal_octal_digit_%25s">Illegal octal digit %s</A></STRONG><BR>
  1648. <DD>
  1649. (F) You used an 8 or 9 in a octal number.
  1650. <P></P>
  1651. <DT><STRONG><A NAME="item_Illegal_binary_digit_%25s_ignored">Illegal binary digit %s ignored</A></STRONG><BR>
  1652. <DD>
  1653. (W digit) You may have tried to use a digit other than 0 or 1 in a binary number.
  1654. Interpretation of the binary number stopped before the offending digit.
  1655. <P></P>
  1656. <DT><STRONG><A NAME="item_Illegal_octal_digit_%25s_ignored">Illegal octal digit %s ignored</A></STRONG><BR>
  1657. <DD>
  1658. (W digit) You may have tried to use an 8 or 9 in a octal number.  Interpretation
  1659. of the octal number stopped before the 8 or 9.
  1660. <P></P>
  1661. <DT><STRONG><A NAME="item_Illegal_hexadecimal_digit_%25s_ignored">Illegal hexadecimal digit %s ignored</A></STRONG><BR>
  1662. <DD>
  1663. (W digit) You may have tried to use a character other than 0 - 9 or A - F, a - f
  1664. in a hexadecimal number.  Interpretation of the hexadecimal number stopped
  1665. before the illegal character.
  1666. <P></P>
  1667. <DT><STRONG><A NAME="item_Illegal_number_of_bits_in_vec">Illegal number of bits in vec</A></STRONG><BR>
  1668. <DD>
  1669. (F) The number of bits in <A HREF="../../lib/Pod/perlfunc.html#item_vec"><CODE>vec()</CODE></A> (the third argument) must be a power of
  1670. two from 1 to 32 (or 64, if your platform supports that).
  1671. <P></P>
  1672. <DT><STRONG><A NAME="item_Illegal_switch_in_PERL5OPT%3A_%25s">Illegal switch in PERL5OPT: %s</A></STRONG><BR>
  1673. <DD>
  1674. (X) The PERL5OPT environment variable may only be used to set the
  1675. following switches: <STRONG>-[DIMUdmw]</STRONG>.
  1676. <P></P>
  1677. <DT><STRONG><A NAME="item_In_string%2C_%40%25s_now_must_be_written_as_%5C%40">In string, @%s now must be written as \@%s</A></STRONG><BR>
  1678. <DD>
  1679. (F) It used to be that Perl would try to guess whether you wanted an
  1680. array interpolated or a literal @.  It did this when the string was first
  1681. used at runtime.  Now strings are parsed at compile time, and ambiguous
  1682. instances of @ must be disambiguated, either by prepending a backslash to
  1683. indicate a literal, or by declaring (or using) the array within the
  1684. program before the string (lexically).  (Someday it will simply assume
  1685. that an unbackslashed @ interpolates an array.)
  1686. <P></P>
  1687. <DT><STRONG><A NAME="item_Insecure_dependency_in_%25s">Insecure dependency in %s</A></STRONG><BR>
  1688. <DD>
  1689. (F) You tried to do something that the tainting mechanism didn't like.
  1690. The tainting mechanism is turned on when you're running setuid or setgid,
  1691. or when you specify <STRONG>-T</STRONG> to turn it on explicitly.  The tainting mechanism
  1692. labels all data that's derived directly or indirectly from the user,
  1693. who is considered to be unworthy of your trust.  If any such data is
  1694. used in a ``dangerous'' operation, you get this error.  See <A HREF="../../lib/Pod/perlsec.html">the perlsec manpage</A>
  1695. for more information.
  1696. <P></P>
  1697. <DT><STRONG><A NAME="item_Insecure_directory_in_%25s">Insecure directory in %s</A></STRONG><BR>
  1698. <DD>
  1699. (F) You can't use system(), exec(), or a piped open in a setuid or setgid
  1700. script if <CODE>$ENV{PATH}</CODE> contains a directory that is writable by the world.
  1701. See <A HREF="../../lib/Pod/perlsec.html">the perlsec manpage</A>.
  1702. <P></P>
  1703. <DT><STRONG><A NAME="item_Insecure_%24ENV%7B%25s%7D_while_running_%25s">Insecure $ENV{%s} while running %s</A></STRONG><BR>
  1704. <DD>
  1705. (F) You can't use system(), exec(), or a piped open in a setuid or
  1706. setgid script if any of <CODE>$ENV{PATH}</CODE>, <CODE>$ENV{IFS}</CODE>, <CODE>$ENV{CDPATH}</CODE>,
  1707. <CODE>$ENV{ENV}</CODE> or <CODE>$ENV{BASH_ENV}</CODE> are derived from data supplied (or
  1708. potentially supplied) by the user.  The script must set the path to a
  1709. known value, using trustworthy data.  See <A HREF="../../lib/Pod/perlsec.html">the perlsec manpage</A>.
  1710. <P></P>
  1711. <DT><STRONG><A NAME="item_Integer_overflow_in_%25s_number">Integer overflow in %s number</A></STRONG><BR>
  1712. <DD>
  1713. (W overflow) The hexadecimal, octal or binary number you have specified either
  1714. as a literal or as an argument to <A HREF="../../lib/Pod/perlfunc.html#item_hex"><CODE>hex()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_oct"><CODE>oct()</CODE></A> is too big for your
  1715. architecture, and has been converted to a floating point number.  On a
  1716. 32-bit architecture the largest hexadecimal, octal or binary number
  1717. representable without overflow is 0xFFFFFFFF, 037777777777, or
  1718. 0b11111111111111111111111111111111 respectively.  Note that Perl
  1719. transparently promotes all numbers to a floating point representation
  1720. internally--subject to loss of precision errors in subsequent
  1721. operations.
  1722. <P></P>
  1723. <DT><STRONG><A NAME="item_Internal_inconsistency_in_tracking_vforks">Internal inconsistency in tracking vforks</A></STRONG><BR>
  1724. <DD>
  1725. (S) A warning peculiar to VMS.  Perl keeps track of the number
  1726. of times you've called <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec</CODE></A>, to determine
  1727. whether the current call to <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec</CODE></A> should affect the current
  1728. script or a subprocess (see <A HREF="../../lib/Pod/perlvms.html#exec list">exec LIST in the perlvms manpage</A>).  Somehow, this count
  1729. has become scrambled, so Perl is making a guess and treating
  1730. this <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec</CODE></A> as a request to terminate the Perl script
  1731. and execute the specified command.
  1732. <P></P>
  1733. <DT><STRONG><A NAME="item_internal_disaster_in_regexp">internal disaster in regexp</A></STRONG><BR>
  1734. <DD>
  1735. (P) Something went badly wrong in the regular expression parser.
  1736. <P></P>
  1737. <DT><STRONG><A NAME="item_internal_urp_in_regexp_at_%2F%25s%2F">internal urp in regexp at /%s/</A></STRONG><BR>
  1738. <DD>
  1739. (P) Something went badly awry in the regular expression parser.
  1740. <P></P>
  1741. <DT><STRONG><A NAME="item_Invalid_%25s_attribute%3A_%25s">Invalid %s attribute: %s</A></STRONG><BR>
  1742. <DD>
  1743. The indicated attribute for a subroutine or variable was not recognized
  1744. by Perl or by a user-supplied handler.  See <A HREF="../../lib/attributes.html">the attributes manpage</A>.
  1745. <P></P>
  1746. <DT><STRONG><A NAME="item_Invalid_%25s_attributes%3A_%25s">Invalid %s attributes: %s</A></STRONG><BR>
  1747. <DD>
  1748. The indicated attributes for a subroutine or variable were not recognized
  1749. by Perl or by a user-supplied handler.  See <A HREF="../../lib/attributes.html">the attributes manpage</A>.
  1750. <P></P>
  1751. <DT><STRONG><A NAME="item_invalid_%5B%5D_range_%22%25s%22_in_regexp">invalid [] range ``%s'' in regexp</A></STRONG><BR>
  1752. <DD>
  1753. (F) The range specified in a character class had a minimum character
  1754. greater than the maximum character.  See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  1755. <P></P>
  1756. <DT><STRONG><A NAME="item_Invalid_conversion_in_%25s%3A_%22%25s%22">Invalid conversion in %s: ``%s''</A></STRONG><BR>
  1757. <DD>
  1758. (W printf) Perl does not understand the given format conversion.
  1759. See <A HREF="../../lib/Pod/perlfunc.html#sprintf">sprintf in the perlfunc manpage</A>.
  1760. <P></P>
  1761. <DT><STRONG><A NAME="item_Invalid_separator_character_%25s_in_attribute_list">Invalid separator character %s in attribute list</A></STRONG><BR>
  1762. <DD>
  1763. (F) Something other than a colon or whitespace was seen between the
  1764. elements of an attribute list.  If the previous attribute
  1765. had a parenthesised parameter list, perhaps that list was terminated
  1766. too soon.  See <A HREF="../../lib/attributes.html">the attributes manpage</A>.
  1767. <P></P>
  1768. <DT><STRONG><A NAME="item_Invalid_type_in_pack%3A_%27%25s%27">Invalid type in pack: '%s'</A></STRONG><BR>
  1769. <DD>
  1770. (F) The given character is not a valid pack type.  See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  1771. (W pack) The given character is not a valid pack type but used to be silently
  1772. ignored.
  1773. <P></P>
  1774. <DT><STRONG><A NAME="item_Invalid_type_in_unpack%3A_%27%25s%27">Invalid type in unpack: '%s'</A></STRONG><BR>
  1775. <DD>
  1776. (F) The given character is not a valid unpack type.  See <A HREF="../../lib/Pod/perlfunc.html#unpack">unpack in the perlfunc manpage</A>.
  1777. (W unpack) The given character is not a valid unpack type but used to be silently
  1778. ignored.
  1779. <P></P>
  1780. <DT><STRONG><A NAME="item_ioctl_is_not_implemented">ioctl is not implemented</A></STRONG><BR>
  1781. <DD>
  1782. (F) Your machine apparently doesn't implement ioctl(), which is pretty
  1783. strange for a machine that supports C.
  1784. <P></P>
  1785. <DT><STRONG><A NAME="item_junk_on_end_of_regexp">junk on end of regexp</A></STRONG><BR>
  1786. <DD>
  1787. (P) The regular expression parser is confused.
  1788. <P></P>
  1789. <DT><STRONG><A NAME="item_Label_not_found_for_%22last_%25s%22">Label not found for ``last %s''</A></STRONG><BR>
  1790. <DD>
  1791. (F) You named a loop to break out of, but you're not currently in a
  1792. loop of that name, not even if you count where you were called from.
  1793. See <A HREF="../../lib/Pod/perlfunc.html#last">last in the perlfunc manpage</A>.
  1794. <P></P>
  1795. <DT><STRONG><A NAME="item_Label_not_found_for_%22next_%25s%22">Label not found for ``next %s''</A></STRONG><BR>
  1796. <DD>
  1797. (F) You named a loop to continue, but you're not currently in a loop of
  1798. that name, not even if you count where you were called from.  See
  1799. <A HREF="../../lib/Pod/perlfunc.html#last">last in the perlfunc manpage</A>.
  1800. <P></P>
  1801. <DT><STRONG><A NAME="item_Label_not_found_for_%22redo_%25s%22">Label not found for ``redo %s''</A></STRONG><BR>
  1802. <DD>
  1803. (F) You named a loop to restart, but you're not currently in a loop of
  1804. that name, not even if you count where you were called from.  See
  1805. <A HREF="../../lib/Pod/perlfunc.html#last">last in the perlfunc manpage</A>.
  1806. <P></P>
  1807. <DT><STRONG><A NAME="item_leaving_effective_%25s_failed">leaving effective %s failed</A></STRONG><BR>
  1808. <DD>
  1809. (F) While under the <CODE>use filetest</CODE> pragma, switching the real and
  1810. effective uids or gids failed.
  1811. <P></P>
  1812. <DT><STRONG><A NAME="item_listen"><CODE>listen()</CODE> on closed socket %s</A></STRONG><BR>
  1813. <DD>
  1814. (W closed) You tried to do a listen on a closed socket.  Did you forget to check
  1815. the return value of your <A HREF="../../lib/Pod/perlfunc.html#item_socket"><CODE>socket()</CODE></A> call?  See <A HREF="../../lib/Pod/perlfunc.html#listen">listen in the perlfunc manpage</A>.
  1816. <P></P>
  1817. <DT><STRONG><A NAME="item_Lvalue_subs_returning_%25s_not_implemented_yet">Lvalue subs returning %s not implemented yet</A></STRONG><BR>
  1818. <DD>
  1819. (F) Due to limitations in the current implementation, array and hash
  1820. values cannot be returned in subroutines used in lvalue context.
  1821. See <A HREF="../../lib/Pod/perlsub.html#lvalue subroutines">Lvalue subroutines in the perlsub manpage</A>.
  1822. <P></P>
  1823. <DT><STRONG><A NAME="item_Method_for_operation_%25s_not_found_in_package_%25">Method for operation %s not found in package %s during blessing</A></STRONG><BR>
  1824. <DD>
  1825. (F) An attempt was made to specify an entry in an overloading table that
  1826. doesn't resolve to a valid subroutine.  See <A HREF="../../lib/overload.html">the overload manpage</A>.
  1827. <P></P>
  1828. <DT><STRONG><A NAME="item_Method_%25s_not_permitted">Method %s not permitted</A></STRONG><BR>
  1829. <DD>
  1830. See Server error.
  1831. <P></P>
  1832. <DT><STRONG><A NAME="item_Might_be_a_runaway_multi%2Dline_%25s_string_starti">Might be a runaway multi-line %s string starting on line %d</A></STRONG><BR>
  1833. <DD>
  1834. (S) An advisory indicating that the previous error may have been caused
  1835. by a missing delimiter on a string or pattern, because it eventually
  1836. ended earlier on the current line.
  1837. <P></P>
  1838. <DT><STRONG><A NAME="item_Misplaced___in_number">Misplaced _ in number</A></STRONG><BR>
  1839. <DD>
  1840. (W syntax) An underline in a decimal constant wasn't on a 3-digit boundary.
  1841. <P></P>
  1842. <DT><STRONG><A NAME="item_Missing_%24_on_loop_variable">Missing $ on loop variable</A></STRONG><BR>
  1843. <DD>
  1844. (F) Apparently you've been programming in <STRONG>csh</STRONG> too much.  Variables are always
  1845. mentioned with the $ in Perl, unlike in the shells, where it can vary from
  1846. one line to the next.
  1847. <P></P>
  1848. <DT><STRONG><A NAME="item_Missing_%25sbrace%25s_on_%5CN%7B%7D">Missing %sbrace%s on \N{}</A></STRONG><BR>
  1849. <DD>
  1850. (F) Wrong syntax of character name literal <CODE>\N{charname}</CODE> within
  1851. double-quotish context.
  1852. <P></P>
  1853. <DT><STRONG><A NAME="item_Missing_comma_after_first_argument_to_%25s_functio">Missing comma after first argument to %s function</A></STRONG><BR>
  1854. <DD>
  1855. (F) While certain functions allow you to specify a filehandle or an
  1856. ``indirect object'' before the argument list, this ain't one of them.
  1857. <P></P>
  1858. <DT><STRONG><A NAME="item_Missing_command_in_piped_open">Missing command in piped open</A></STRONG><BR>
  1859. <DD>
  1860. (W pipe) You used the <A HREF="#item_open"><CODE>open(FH, "| command")</CODE></A> or <A HREF="#item_open"><CODE>open(FH, "command |")</CODE></A>
  1861. construction, but the command was missing or blank.
  1862. <P></P>
  1863. <DT><STRONG><A NAME="item_%28Missing_operator_before_%25s%3F%29">(Missing operator before %s?)</A></STRONG><BR>
  1864. <DD>
  1865. (S) This is an educated guess made in conjunction with the message ``%s
  1866. found where operator expected''.  Often the missing operator is a comma.
  1867. <P></P>
  1868. <DT><STRONG><A NAME="item_Missing_right_curly_or_square_bracket">Missing right curly or square bracket</A></STRONG><BR>
  1869. <DD>
  1870. (F) The lexer counted more opening curly or square brackets than
  1871. closing ones.  As a general rule, you'll find it's missing near the place
  1872. you were last editing.
  1873. <P></P>
  1874. <DT><STRONG><A NAME="item_Modification_of_a_read%2Donly_value_attempted">Modification of a read-only value attempted</A></STRONG><BR>
  1875. <DD>
  1876. (F) You tried, directly or indirectly, to change the value of a
  1877. constant.  You didn't, of course, try ``2 = 1'', because the compiler
  1878. catches that.  But an easy way to do the same thing is:
  1879. <PRE>
  1880.     sub mod { $_[0] = 1 }
  1881.     mod(2);</PRE>
  1882. <P>Another way is to assign to a <A HREF="../../lib/Pod/perlfunc.html#item_substr"><CODE>substr()</CODE></A> that's off the end of the string.</P>
  1883. <P></P>
  1884. <DT><STRONG><A NAME="item_Modification_of_non%2Dcreatable_array_value_attemp">Modification of non-creatable array value attempted, subscript %d</A></STRONG><BR>
  1885. <DD>
  1886. (F) You tried to make an array value spring into existence, and the
  1887. subscript was probably negative, even counting from end of the array
  1888. backwards.
  1889. <P></P>
  1890. <DT><STRONG><A NAME="item_Modification_of_non%2Dcreatable_hash_value_attempt">Modification of non-creatable hash value attempted, subscript ``%s''</A></STRONG><BR>
  1891. <DD>
  1892. (P) You tried to make a hash value spring into existence, and it couldn't
  1893. be created for some peculiar reason.
  1894. <P></P>
  1895. <DT><STRONG><A NAME="item_Module_name_must_be_constant">Module name must be constant</A></STRONG><BR>
  1896. <DD>
  1897. (F) Only a bare module name is allowed as the first argument to a ``use''.
  1898. <P></P>
  1899. <DT><STRONG><A NAME="item_msg%25s_not_implemented">msg%s not implemented</A></STRONG><BR>
  1900. <DD>
  1901. (F) You don't have System V message IPC on your system.
  1902. <P></P>
  1903. <DT><STRONG><A NAME="item_Multidimensional_syntax_%25s_not_supported">Multidimensional syntax %s not supported</A></STRONG><BR>
  1904. <DD>
  1905. (W syntax) Multidimensional arrays aren't written like <CODE>$foo[1,2,3]</CODE>.  They're written
  1906. like <CODE>$foo[1][2][3]</CODE>, as in C.
  1907. <P></P>
  1908. <DT><STRONG><A NAME="item_Missing_name_in_%22my_sub%22">Missing name in ``my sub''</A></STRONG><BR>
  1909. <DD>
  1910. (F) The reserved syntax for lexically scoped subroutines requires that they
  1911. have a name with which they can be found.
  1912. <P></P>
  1913. <DT><STRONG><A NAME="item_Name_%22%25s%3A%3A%25s%22_used_only_once%3A_possib">Name ``%s::%s'' used only once: possible typo</A></STRONG><BR>
  1914. <DD>
  1915. (W once) Typographical errors often show up as unique variable names.
  1916. If you had a good reason for having a unique name, then just mention
  1917. it again somehow to suppress the message.  The <A HREF="../../lib/Pod/perlfunc.html#item_our"><CODE>our</CODE></A> declaration is
  1918. provided for this purpose.
  1919. <P></P>
  1920. <DT><STRONG><A NAME="item_Negative_length">Negative length</A></STRONG><BR>
  1921. <DD>
  1922. (F) You tried to do a read/write/send/recv operation with a buffer length
  1923. that is less than 0.  This is difficult to imagine.
  1924. <P></P>
  1925. <DT><STRONG><A NAME="item_nested_%2A%3F%2B_in_regexp">nested *?+ in regexp</A></STRONG><BR>
  1926. <DD>
  1927. (F) You can't quantify a quantifier without intervening parentheses.  So
  1928. things like ** or +* or ?* are illegal.
  1929. <P>Note, however, that the minimal matching quantifiers, <CODE>*?</CODE>, <CODE>+?</CODE>, and <CODE>??</CODE> appear
  1930. to be nested quantifiers, but aren't.  See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.</P>
  1931. <P></P>
  1932. <DT><STRONG><A NAME="item_No_%23%21_line">No #! line</A></STRONG><BR>
  1933. <DD>
  1934. (F) The setuid emulator requires that scripts have a well-formed #! line
  1935. even on machines that don't support the #! construct.
  1936. <P></P>
  1937. <DT><STRONG><A NAME="item_No_%25s_allowed_while_running_setuid">No %s allowed while running setuid</A></STRONG><BR>
  1938. <DD>
  1939. (F) Certain operations are deemed to be too insecure for a setuid or setgid
  1940. script to even be allowed to attempt.  Generally speaking there will be
  1941. another way to do what you want that is, if not secure, at least securable.
  1942. See <A HREF="../../lib/Pod/perlsec.html">the perlsec manpage</A>.
  1943. <P></P>
  1944. <DT><STRONG><A NAME="item_No_%2De_allowed_in_setuid_scripts">No <STRONG>-e</STRONG> allowed in setuid scripts</A></STRONG><BR>
  1945. <DD>
  1946. (F) A setuid script can't be specified by the user.
  1947. <P></P>
  1948. <DT><STRONG><A NAME="item_No_%25s_specified_for_%2D%25c">No %s specified for -%c</A></STRONG><BR>
  1949. <DD>
  1950. (F) The indicated command line switch needs a mandatory argument, but
  1951. you haven't specified one.
  1952. <P></P>
  1953. <DT><STRONG><A NAME="item_No_comma_allowed_after_%25s">No comma allowed after %s</A></STRONG><BR>
  1954. <DD>
  1955. (F) A list operator that has a filehandle or ``indirect object'' is not
  1956. allowed to have a comma between that and the following arguments.
  1957. Otherwise it'd be just another one of the arguments.
  1958. <P>One possible cause for this is that you expected to have imported a
  1959. constant to your name space with <STRONG>use</STRONG> or <STRONG>import</STRONG> while no such
  1960. importing took place, it may for example be that your operating system
  1961. does not support that particular constant. Hopefully you did use an
  1962. explicit import list for the constants you expect to see, please see
  1963. <A HREF="../../lib/Pod/perlfunc.html#use">use in the perlfunc manpage</A> and <A HREF="../../lib/Pod/perlfunc.html#import">import in the perlfunc manpage</A>. While an explicit import list
  1964. would probably have caught this error earlier it naturally does not
  1965. remedy the fact that your operating system still does not support that
  1966. constant. Maybe you have a typo in the constants of the symbol import
  1967. list of <STRONG>use</STRONG> or <STRONG>import</STRONG> or in the constant name at the line where
  1968. this error was triggered?</P>
  1969. <P></P>
  1970. <DT><STRONG><A NAME="item_No_command_into_which_to_pipe_on_command_line">No command into which to pipe on command line</A></STRONG><BR>
  1971. <DD>
  1972. (F) An error peculiar to VMS.  Perl handles its own command line redirection,
  1973. and found a '|' at the end of the command line, so it doesn't know where you
  1974. want to pipe the output from this command.
  1975. <P></P>
  1976. <DT><STRONG><A NAME="item_No_DB%3A%3ADB_routine_defined">No DB::DB routine defined</A></STRONG><BR>
  1977. <DD>
  1978. (F) The currently executing code was compiled with the <STRONG>-d</STRONG> switch,
  1979. but for some reason the perl5db.pl file (or some facsimile thereof)
  1980. didn't define a routine to be called at the beginning of each
  1981. statement.  Which is odd, because the file should have been required
  1982. automatically, and should have blown up the require if it didn't parse
  1983. right.
  1984. <P></P>
  1985. <DT><STRONG><A NAME="item_No_dbm_on_this_machine">No dbm on this machine</A></STRONG><BR>
  1986. <DD>
  1987. (P) This is counted as an internal error, because every machine should
  1988. supply dbm nowadays, because Perl comes with SDBM.  See <A HREF="../../lib/SDBM_File.html">the SDBM_File manpage</A>.
  1989. <P></P>
  1990. <DT><STRONG><A NAME="item_No_DBsub_routine">No DBsub routine</A></STRONG><BR>
  1991. <DD>
  1992. (F) The currently executing code was compiled with the <STRONG>-d</STRONG> switch,
  1993. but for some reason the perl5db.pl file (or some facsimile thereof)
  1994. didn't define a DB::sub routine to be called at the beginning of each
  1995. ordinary subroutine call.
  1996. <P></P>
  1997. <DT><STRONG><A NAME="item_No_error_file_after_2%3E_or_2%3E%3E_on_command_lin">No error file after 2> or 2>> on command line</A></STRONG><BR>
  1998. <DD>
  1999. (F) An error peculiar to VMS.  Perl handles its own command line redirection,
  2000. and found a '2>' or a '2>>' on the command line, but can't find
  2001. the name of the file to which to write data destined for stderr.
  2002. <P></P>
  2003. <DT><STRONG><A NAME="item_No_input_file_after_%3C_on_command_line">No input file after < on command line</A></STRONG><BR>
  2004. <DD>
  2005. (F) An error peculiar to VMS.  Perl handles its own command line redirection,
  2006. and found a '<' on the command line, but can't find the name of the file
  2007. from which to read data for stdin.
  2008. <P></P>
  2009. <DT><STRONG><A NAME="item_No_output_file_after_%3E_on_command_line">No output file after > on command line</A></STRONG><BR>
  2010. <DD>
  2011. (F) An error peculiar to VMS.  Perl handles its own command line redirection,
  2012. and found a lone '>' at the end of the command line, so it doesn't know
  2013. where you wanted to redirect stdout.
  2014. <P></P>
  2015. <DT><STRONG><A NAME="item_No_output_file_after_%3E_or_%3E%3E_on_command_line">No output file after > or >> on command line</A></STRONG><BR>
  2016. <DD>
  2017. (F) An error peculiar to VMS.  Perl handles its own command line redirection,
  2018. and found a '>' or a '>>' on the command line, but can't find the
  2019. name of the file to which to write data destined for stdout.
  2020. <P></P>
  2021. <DT><STRONG><A NAME="item_No_package_name_allowed_for_variable_%25s_in_%22ou">No package name allowed for variable %s in ``our''</A></STRONG><BR>
  2022. <DD>
  2023. (F) Fully qualified variable names are not allowed in ``our'' declarations,
  2024. because that doesn't make much sense under existing semantics.  Such
  2025. syntax is reserved for future extensions.
  2026. <P></P>
  2027. <DT><STRONG><A NAME="item_No_Perl_script_found_in_input">No Perl script found in input</A></STRONG><BR>
  2028. <DD>
  2029. (F) You called <CODE>perl -x</CODE>, but no line was found in the file beginning
  2030. with #! and containing the word ``perl''.
  2031. <P></P>
  2032. <DT><STRONG><A NAME="item_No_setregid_available">No setregid available</A></STRONG><BR>
  2033. <DD>
  2034. (F) Configure didn't find anything resembling the <CODE>setregid()</CODE> call for
  2035. your system.
  2036. <P></P>
  2037. <DT><STRONG><A NAME="item_No_setreuid_available">No setreuid available</A></STRONG><BR>
  2038. <DD>
  2039. (F) Configure didn't find anything resembling the <CODE>setreuid()</CODE> call for
  2040. your system.
  2041. <P></P>
  2042. <DT><STRONG><A NAME="item_No_space_allowed_after_%2D%25c">No space allowed after -%c</A></STRONG><BR>
  2043. <DD>
  2044. (F) The argument to the indicated command line switch must follow immediately
  2045. after the switch, without intervening spaces.
  2046. <P></P>
  2047. <DT><STRONG><A NAME="item_No_such_pseudo%2Dhash_field_%22%25s%22">No such pseudo-hash field ``%s''</A></STRONG><BR>
  2048. <DD>
  2049. (F) You tried to access an array as a hash, but the field name used is
  2050. not defined.  The hash at index 0 should map all valid field names to
  2051. array indices for that to work.
  2052. <P></P>
  2053. <DT><STRONG><A NAME="item_No_such_pseudo%2Dhash_field_%22%25s%22_in_variable">No such pseudo-hash field ``%s'' in variable %s of type %s</A></STRONG><BR>
  2054. <DD>
  2055. (F) You tried to access a field of a typed variable where the type
  2056. does not know about the field name.  The field names are looked up in
  2057. the %FIELDS hash in the type package at compile time.  The %FIELDS hash
  2058. is usually set up with the 'fields' pragma.
  2059. <P></P>
  2060. <DT><STRONG><A NAME="item_No_such_pipe_open">No such pipe open</A></STRONG><BR>
  2061. <DD>
  2062. (P) An error peculiar to VMS.  The internal routine <CODE>my_pclose()</CODE> tried to
  2063. close a pipe which hadn't been opened.  This should have been caught earlier as
  2064. an attempt to close an unopened filehandle.
  2065. <P></P>
  2066. <DT><STRONG><A NAME="item_No_such_signal%3A_SIG%25s">No such signal: SIG%s</A></STRONG><BR>
  2067. <DD>
  2068. (W signal) You specified a signal name as a subscript to %SIG that was not recognized.
  2069. Say <CODE>kill -l</CODE> in your shell to see the valid signal names on your system.
  2070. <P></P>
  2071. <DT><STRONG><A NAME="item_no_UTC_offset_information%3B_assuming_local_time_i">no UTC offset information; assuming local time is UTC</A></STRONG><BR>
  2072. <DD>
  2073. (S) A warning peculiar to VMS.  Perl was unable to find the local
  2074. timezone offset, so it's assuming that local system time is equivalent
  2075. to UTC.  If it's not, define the logical name <EM>SYS$TIMEZONE_DIFFERENTIAL</EM>
  2076. to translate to the number of seconds which need to be added to UTC to
  2077. get local time.
  2078. <P></P>
  2079. <DT><STRONG><A NAME="item_Not_a_CODE_reference">Not a CODE reference</A></STRONG><BR>
  2080. <DD>
  2081. (F) Perl was trying to evaluate a reference to a code value (that is, a
  2082. subroutine), but found a reference to something else instead.  You can
  2083. use the <A HREF="../../lib/Pod/perlfunc.html#item_ref"><CODE>ref()</CODE></A> function to find out what kind of ref it really was.
  2084. See also <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  2085. <P></P>
  2086. <DT><STRONG><A NAME="item_Not_a_format_reference">Not a format reference</A></STRONG><BR>
  2087. <DD>
  2088. (F) I'm not sure how you managed to generate a reference to an anonymous
  2089. format, but this indicates you did, and that it didn't exist.
  2090. <P></P>
  2091. <DT><STRONG><A NAME="item_Not_a_GLOB_reference">Not a GLOB reference</A></STRONG><BR>
  2092. <DD>
  2093. (F) Perl was trying to evaluate a reference to a ``typeglob'' (that is,
  2094. a symbol table entry that looks like <CODE>*foo</CODE>), but found a reference to
  2095. something else instead.  You can use the <A HREF="../../lib/Pod/perlfunc.html#item_ref"><CODE>ref()</CODE></A> function to find out
  2096. what kind of ref it really was.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  2097. <P></P>
  2098. <DT><STRONG><A NAME="item_Not_a_HASH_reference">Not a HASH reference</A></STRONG><BR>
  2099. <DD>
  2100. (F) Perl was trying to evaluate a reference to a hash value, but
  2101. found a reference to something else instead.  You can use the <A HREF="../../lib/Pod/perlfunc.html#item_ref"><CODE>ref()</CODE></A>
  2102. function to find out what kind of ref it really was.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  2103. <P></P>
  2104. <DT><STRONG><A NAME="item_Not_a_perl_script">Not a perl script</A></STRONG><BR>
  2105. <DD>
  2106. (F) The setuid emulator requires that scripts have a well-formed #! line
  2107. even on machines that don't support the #! construct.  The line must
  2108. mention perl.
  2109. <P></P>
  2110. <DT><STRONG><A NAME="item_Not_a_SCALAR_reference">Not a SCALAR reference</A></STRONG><BR>
  2111. <DD>
  2112. (F) Perl was trying to evaluate a reference to a scalar value, but
  2113. found a reference to something else instead.  You can use the <A HREF="../../lib/Pod/perlfunc.html#item_ref"><CODE>ref()</CODE></A>
  2114. function to find out what kind of ref it really was.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  2115. <P></P>
  2116. <DT><STRONG><A NAME="item_Not_a_subroutine_reference">Not a subroutine reference</A></STRONG><BR>
  2117. <DD>
  2118. (F) Perl was trying to evaluate a reference to a code value (that is, a
  2119. subroutine), but found a reference to something else instead.  You can
  2120. use the <A HREF="../../lib/Pod/perlfunc.html#item_ref"><CODE>ref()</CODE></A> function to find out what kind of ref it really was.
  2121. See also <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  2122. <P></P>
  2123. <DT><STRONG><A NAME="item_Not_a_subroutine_reference_in_overload_table">Not a subroutine reference in overload table</A></STRONG><BR>
  2124. <DD>
  2125. (F) An attempt was made to specify an entry in an overloading table that
  2126. doesn't somehow point to a valid subroutine.  See <A HREF="../../lib/overload.html">the overload manpage</A>.
  2127. <P></P>
  2128. <DT><STRONG><A NAME="item_Not_an_ARRAY_reference">Not an ARRAY reference</A></STRONG><BR>
  2129. <DD>
  2130. (F) Perl was trying to evaluate a reference to an array value, but
  2131. found a reference to something else instead.  You can use the <A HREF="../../lib/Pod/perlfunc.html#item_ref"><CODE>ref()</CODE></A>
  2132. function to find out what kind of ref it really was.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  2133. <P></P>
  2134. <DT><STRONG><A NAME="item_Not_enough_arguments_for_%25s">Not enough arguments for %s</A></STRONG><BR>
  2135. <DD>
  2136. (F) The function requires more arguments than you specified.
  2137. <P></P>
  2138. <DT><STRONG><A NAME="item_Not_enough_format_arguments">Not enough format arguments</A></STRONG><BR>
  2139. <DD>
  2140. (W syntax) A format specified more picture fields than the next line supplied.
  2141. See <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A>.
  2142. <P></P>
  2143. <DT><STRONG><A NAME="item_Null_filename_used">Null filename used</A></STRONG><BR>
  2144. <DD>
  2145. (F) You can't require the null filename, especially because on many machines
  2146. that means the current directory!  See <A HREF="../../lib/Pod/perlfunc.html#require">require in the perlfunc manpage</A>.
  2147. <P></P>
  2148. <DT><STRONG><A NAME="item_Null_picture_in_formline">Null picture in formline</A></STRONG><BR>
  2149. <DD>
  2150. (F) The first argument to formline must be a valid format picture
  2151. specification.  It was found to be empty, which probably means you
  2152. supplied it an uninitialized value.  See <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A>.
  2153. <P></P>
  2154. <DT><STRONG><A NAME="item_NULL_OP_IN_RUN">NULL OP IN RUN</A></STRONG><BR>
  2155. <DD>
  2156. (P debugging) Some internal routine called <CODE>run()</CODE> with a null opcode pointer.
  2157. <P></P>
  2158. <DT><STRONG><A NAME="item_Null_realloc">Null realloc</A></STRONG><BR>
  2159. <DD>
  2160. (P) An attempt was made to realloc NULL.
  2161. <P></P>
  2162. <DT><STRONG><A NAME="item_NULL_regexp_argument">NULL regexp argument</A></STRONG><BR>
  2163. <DD>
  2164. (P) The internal pattern matching routines blew it big time.
  2165. <P></P>
  2166. <DT><STRONG><A NAME="item_NULL_regexp_parameter">NULL regexp parameter</A></STRONG><BR>
  2167. <DD>
  2168. (P) The internal pattern matching routines are out of their gourd.
  2169. <P></P>
  2170. <DT><STRONG><A NAME="item_Number_too_long">Number too long</A></STRONG><BR>
  2171. <DD>
  2172. (F) Perl limits the representation of decimal numbers in programs to about
  2173. about 250 characters.  You've exceeded that length.  Future versions of
  2174. Perl are likely to eliminate this arbitrary limitation.  In the meantime,
  2175. try using scientific notation (e.g. ``1e6'' instead of ``1_000_000'').
  2176. <P></P>
  2177. <DT><STRONG><A NAME="item_Octal_number_%3E_037777777777_non%2Dportable">Octal number > 037777777777 non-portable</A></STRONG><BR>
  2178. <DD>
  2179. (W portable) The octal number you specified is larger than 2**32-1 (4294967295)
  2180. and therefore non-portable between systems.  See <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A> for more
  2181. on portability concerns.
  2182. <P>See also <A HREF="../../lib/Pod/perlport.html">the perlport manpage</A> for writing portable code.</P>
  2183. <P></P>
  2184. <DT><STRONG><A NAME="item_Octal_number_in_vector_unsupported">Octal number in vector unsupported</A></STRONG><BR>
  2185. <DD>
  2186. (F) Numbers with a leading <CODE>0</CODE> are not currently allowed in vectors.  The
  2187. octal number interpretation of such numbers may be supported in a future
  2188. version.
  2189. <P></P>
  2190. <DT><STRONG><A NAME="item_Odd_number_of_elements_in_hash_assignment">Odd number of elements in hash assignment</A></STRONG><BR>
  2191. <DD>
  2192. (W misc) You specified an odd number of elements to initialize a hash, which
  2193. is odd, because hashes come in key/value pairs.
  2194. <P></P>
  2195. <DT><STRONG><A NAME="item_Offset_outside_string">Offset outside string</A></STRONG><BR>
  2196. <DD>
  2197. (F) You tried to do a read/write/send/recv operation with an offset
  2198. pointing outside the buffer.  This is difficult to imagine.
  2199. The sole exception to this is that <A HREF="../../lib/Pod/perlfunc.html#item_sysread"><CODE>sysread()</CODE></A>ing past the buffer
  2200. will extend the buffer and zero pad the new area.
  2201. <P></P>
  2202. <DT><STRONG><A NAME="item_oops%3A_oopsAV">oops: oopsAV</A></STRONG><BR>
  2203. <DD>
  2204. (S internal) An internal warning that the grammar is screwed up.
  2205. <P></P>
  2206. <DT><STRONG><A NAME="item_oops%3A_oopsHV">oops: oopsHV</A></STRONG><BR>
  2207. <DD>
  2208. (S internal) An internal warning that the grammar is screwed up.
  2209. <P></P>
  2210. <DT><STRONG><A NAME="item_Operation_%60%25s%27%3A_no_method_found%2C_%25s">Operation `%s': no method found, %s</A></STRONG><BR>
  2211. <DD>
  2212. (F) An attempt was made to perform an overloaded operation for which
  2213. no handler was defined.  While some handlers can be autogenerated in
  2214. terms of other handlers, there is no default handler for any
  2215. operation, unless <CODE>fallback</CODE> overloading key is specified to be
  2216. true.  See <A HREF="../../lib/overload.html">the overload manpage</A>.
  2217. <P></P>
  2218. <DT><STRONG><A NAME="item_Operator_or_semicolon_missing_before_%25s">Operator or semicolon missing before %s</A></STRONG><BR>
  2219. <DD>
  2220. (S ambiguous) You used a variable or subroutine call where the parser was
  2221. expecting an operator.  The parser has assumed you really meant
  2222. to use an operator, but this is highly likely to be incorrect.
  2223. For example, if you say ``*foo *foo'' it will be interpreted as
  2224. if you said ``*foo * 'foo'''.
  2225. <P></P>
  2226. <DT><STRONG><A NAME="item_Out_of_memory%21">Out of memory!</A></STRONG><BR>
  2227. <DD>
  2228. (X) The <CODE>malloc()</CODE> function returned 0, indicating there was insufficient
  2229. remaining memory (or virtual memory) to satisfy the request.  Perl
  2230. has no option but to exit immediately.
  2231. <P></P>
  2232. <DT><STRONG><A NAME="item_Out_of_memory_for_yacc_stack">Out of memory for yacc stack</A></STRONG><BR>
  2233. <DD>
  2234. (F) The yacc parser wanted to grow its stack so it could continue parsing,
  2235. but <A HREF="#item_realloc"><CODE>realloc()</CODE></A> wouldn't give it more memory, virtual or otherwise.
  2236. <P></P>
  2237. <DT><STRONG><A NAME="item_Out_of_memory_during_request_for_%25s">Out of memory during request for %s</A></STRONG><BR>
  2238. <DD>
  2239. (X|F) The <CODE>malloc()</CODE> function returned 0, indicating there was insufficient
  2240. remaining memory (or virtual memory) to satisfy the request.
  2241. <P>The request was judged to be small, so the possibility to trap it
  2242. depends on the way perl was compiled.  By default it is not trappable.
  2243. However, if compiled for this, Perl may use the contents of <CODE>$^M</CODE> as
  2244. an emergency pool after die()ing with this message.  In this case the
  2245. error is trappable <EM>once</EM>.</P>
  2246. <P></P>
  2247. <DT><STRONG><A NAME="item_Out_of_memory_during_%22large%22_request_for_%25s">Out of memory during ``large'' request for %s</A></STRONG><BR>
  2248. <DD>
  2249. (F) The <CODE>malloc()</CODE> function returned 0, indicating there was insufficient
  2250. remaining memory (or virtual memory) to satisfy the request. However,
  2251. the request was judged large enough (compile-time default is 64K), so
  2252. a possibility to shut down by trapping this error is granted.
  2253. <P></P>
  2254. <DT><STRONG><A NAME="item_Out_of_memory_during_ridiculously_large_request">Out of memory during ridiculously large request</A></STRONG><BR>
  2255. <DD>
  2256. (F) You can't allocate more than 2^31+``small amount'' bytes.  This error
  2257. is most likely to be caused by a typo in the Perl program. e.g., <CODE>$arr[time]</CODE>
  2258. instead of <CODE>$arr[$time]</CODE>.
  2259. <P></P>
  2260. <DT><STRONG><A NAME="item_page_overflow">page overflow</A></STRONG><BR>
  2261. <DD>
  2262. (W io) A single call to <A HREF="#item_write"><CODE>write()</CODE></A> produced more lines than can fit on a page.
  2263. See <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A>.
  2264. <P></P>
  2265. <DT><STRONG><A NAME="item_panic%3A_ck_grep">panic: ck_grep</A></STRONG><BR>
  2266. <DD>
  2267. (P) Failed an internal consistency check trying to compile a grep.
  2268. <P></P>
  2269. <DT><STRONG><A NAME="item_panic%3A_ck_split">panic: ck_split</A></STRONG><BR>
  2270. <DD>
  2271. (P) Failed an internal consistency check trying to compile a split.
  2272. <P></P>
  2273. <DT><STRONG><A NAME="item_panic%3A_corrupt_saved_stack_index">panic: corrupt saved stack index</A></STRONG><BR>
  2274. <DD>
  2275. (P) The savestack was requested to restore more localized values than there
  2276. are in the savestack.
  2277. <P></P>
  2278. <DT><STRONG><A NAME="item_panic%3A_del_backref">panic: del_backref</A></STRONG><BR>
  2279. <DD>
  2280. (P) Failed an internal consistency check while trying to reset a weak
  2281. reference.
  2282. <P></P>
  2283. <DT><STRONG><A NAME="item_panic%3A_die_%25s">panic: die %s</A></STRONG><BR>
  2284. <DD>
  2285. (P) We popped the context stack to an eval context, and then discovered
  2286. it wasn't an eval context.
  2287. <P></P>
  2288. <DT><STRONG><A NAME="item_panic%3A_do_match">panic: do_match</A></STRONG><BR>
  2289. <DD>
  2290. (P) The internal <CODE>pp_match()</CODE> routine was called with invalid operational data.
  2291. <P></P>
  2292. <DT><STRONG><A NAME="item_panic%3A_do_split">panic: do_split</A></STRONG><BR>
  2293. <DD>
  2294. (P) Something terrible went wrong in setting up for the split.
  2295. <P></P>
  2296. <DT><STRONG><A NAME="item_panic%3A_do_subst">panic: do_subst</A></STRONG><BR>
  2297. <DD>
  2298. (P) The internal <CODE>pp_subst()</CODE> routine was called with invalid operational data.
  2299. <P></P>
  2300. <DT><STRONG><A NAME="item_panic%3A_do_trans">panic: do_trans</A></STRONG><BR>
  2301. <DD>
  2302. (P) The internal <CODE>do_trans()</CODE> routine was called with invalid operational data.
  2303. <P></P>
  2304. <DT><STRONG><A NAME="item_panic%3A_frexp">panic: frexp</A></STRONG><BR>
  2305. <DD>
  2306. (P) The library function <CODE>frexp()</CODE> failed, making <A HREF="#item_printf"><CODE>printf(``%f'')</CODE></A> impossible.
  2307. <P></P>
  2308. <DT><STRONG><A NAME="item_panic%3A_goto">panic: goto</A></STRONG><BR>
  2309. <DD>
  2310. (P) We popped the context stack to a context with the specified label,
  2311. and then discovered it wasn't a context we know how to do a goto in.
  2312. <P></P>
  2313. <DT><STRONG><A NAME="item_panic%3A_INTERPCASEMOD">panic: INTERPCASEMOD</A></STRONG><BR>
  2314. <DD>
  2315. (P) The lexer got into a bad state at a case modifier.
  2316. <P></P>
  2317. <DT><STRONG><A NAME="item_panic%3A_INTERPCONCAT">panic: INTERPCONCAT</A></STRONG><BR>
  2318. <DD>
  2319. (P) The lexer got into a bad state parsing a string with brackets.
  2320. <P></P>
  2321. <DT><STRONG><A NAME="item_panic%3A_kid_popen_errno_read">panic: kid popen errno read</A></STRONG><BR>
  2322. <DD>
  2323. (F) forked child returned an incomprehensible message about its errno.
  2324. <P></P>
  2325. <DT><STRONG><A NAME="item_panic%3A_last">panic: last</A></STRONG><BR>
  2326. <DD>
  2327. (P) We popped the context stack to a block context, and then discovered
  2328. it wasn't a block context.
  2329. <P></P>
  2330. <DT><STRONG><A NAME="item_panic%3A_leave_scope_clearsv">panic: leave_scope clearsv</A></STRONG><BR>
  2331. <DD>
  2332. (P) A writable lexical variable became read-only somehow within the scope.
  2333. <P></P>
  2334. <DT><STRONG><A NAME="item_panic%3A_leave_scope_inconsistency">panic: leave_scope inconsistency</A></STRONG><BR>
  2335. <DD>
  2336. (P) The savestack probably got out of sync.  At least, there was an
  2337. invalid enum on the top of it.
  2338. <P></P>
  2339. <DT><STRONG><A NAME="item_panic%3A_malloc">panic: malloc</A></STRONG><BR>
  2340. <DD>
  2341. (P) Something requested a negative number of bytes of malloc.
  2342. <P></P>
  2343. <DT><STRONG><A NAME="item_panic%3A_magic_killbackrefs">panic: magic_killbackrefs</A></STRONG><BR>
  2344. <DD>
  2345. (P) Failed an internal consistency check while trying to reset all weak
  2346. references to an object.
  2347. <P></P>
  2348. <DT><STRONG><A NAME="item_panic%3A_mapstart">panic: mapstart</A></STRONG><BR>
  2349. <DD>
  2350. (P) The compiler is screwed up with respect to the <A HREF="../../lib/Pod/perlfunc.html#item_map"><CODE>map()</CODE></A> function.
  2351. <P></P>
  2352. <DT><STRONG><A NAME="item_panic%3A_null_array">panic: null array</A></STRONG><BR>
  2353. <DD>
  2354. (P) One of the internal array routines was passed a null AV pointer.
  2355. <P></P>
  2356. <DT><STRONG><A NAME="item_panic%3A_pad_alloc">panic: pad_alloc</A></STRONG><BR>
  2357. <DD>
  2358. (P) The compiler got confused about which scratch pad it was allocating
  2359. and freeing temporaries and lexicals from.
  2360. <P></P>
  2361. <DT><STRONG><A NAME="item_panic%3A_pad_free_curpad">panic: pad_free curpad</A></STRONG><BR>
  2362. <DD>
  2363. (P) The compiler got confused about which scratch pad it was allocating
  2364. and freeing temporaries and lexicals from.
  2365. <P></P>
  2366. <DT><STRONG><A NAME="item_panic%3A_pad_free_po">panic: pad_free po</A></STRONG><BR>
  2367. <DD>
  2368. (P) An invalid scratch pad offset was detected internally.
  2369. <P></P>
  2370. <DT><STRONG><A NAME="item_panic%3A_pad_reset_curpad">panic: pad_reset curpad</A></STRONG><BR>
  2371. <DD>
  2372. (P) The compiler got confused about which scratch pad it was allocating
  2373. and freeing temporaries and lexicals from.
  2374. <P></P>
  2375. <DT><STRONG><A NAME="item_panic%3A_pad_sv_po">panic: pad_sv po</A></STRONG><BR>
  2376. <DD>
  2377. (P) An invalid scratch pad offset was detected internally.
  2378. <P></P>
  2379. <DT><STRONG><A NAME="item_panic%3A_pad_swipe_curpad">panic: pad_swipe curpad</A></STRONG><BR>
  2380. <DD>
  2381. (P) The compiler got confused about which scratch pad it was allocating
  2382. and freeing temporaries and lexicals from.
  2383. <P></P>
  2384. <DT><STRONG><A NAME="item_panic%3A_pad_swipe_po">panic: pad_swipe po</A></STRONG><BR>
  2385. <DD>
  2386. (P) An invalid scratch pad offset was detected internally.
  2387. <P></P>
  2388. <DT><STRONG><A NAME="item_panic%3A_pp_iter">panic: pp_iter</A></STRONG><BR>
  2389. <DD>
  2390. (P) The foreach iterator got called in a non-loop context frame.
  2391. <P></P>
  2392. <DT><STRONG><A NAME="item_panic%3A_realloc">panic: realloc</A></STRONG><BR>
  2393. <DD>
  2394. (P) Something requested a negative number of bytes of realloc.
  2395. <P></P>
  2396. <DT><STRONG><A NAME="item_panic%3A_restartop">panic: restartop</A></STRONG><BR>
  2397. <DD>
  2398. (P) Some internal routine requested a goto (or something like it), and
  2399. didn't supply the destination.
  2400. <P></P>
  2401. <DT><STRONG><A NAME="item_panic%3A_return">panic: return</A></STRONG><BR>
  2402. <DD>
  2403. (P) We popped the context stack to a subroutine or eval context, and
  2404. then discovered it wasn't a subroutine or eval context.
  2405. <P></P>
  2406. <DT><STRONG><A NAME="item_panic%3A_scan_num">panic: scan_num</A></STRONG><BR>
  2407. <DD>
  2408. (P) <CODE>scan_num()</CODE> got called on something that wasn't a number.
  2409. <P></P>
  2410. <DT><STRONG><A NAME="item_panic%3A_sv_insert">panic: sv_insert</A></STRONG><BR>
  2411. <DD>
  2412. (P) The <CODE>sv_insert()</CODE> routine was told to remove more string than there
  2413. was string.
  2414. <P></P>
  2415. <DT><STRONG><A NAME="item_panic%3A_top_env">panic: top_env</A></STRONG><BR>
  2416. <DD>
  2417. (P) The compiler attempted to do a goto, or something weird like that.
  2418. <P></P>
  2419. <DT><STRONG><A NAME="item_panic%3A_yylex">panic: yylex</A></STRONG><BR>
  2420. <DD>
  2421. (P) The lexer got into a bad state while processing a case modifier.
  2422. <P></P>
  2423. <DT><STRONG><A NAME="item_panic%3A_%25s">panic: %s</A></STRONG><BR>
  2424. <DD>
  2425. (P) An internal error.
  2426. <P></P>
  2427. <DT><STRONG><A NAME="item_Parentheses_missing_around_%22%25s%22_list">Parentheses missing around ``%s'' list</A></STRONG><BR>
  2428. <DD>
  2429. (W parenthesis) You said something like
  2430. <PRE>
  2431.     my $foo, $bar = @_;</PRE>
  2432. <P>when you meant</P>
  2433. <PRE>
  2434.     my ($foo, $bar) = @_;</PRE>
  2435. <P>Remember that ``my'', ``our'', and ``local'' bind tighter than comma.</P>
  2436. <P></P>
  2437. <DT><STRONG><A NAME="item_Perl_%253%2E3f_required%2D%2Dthis_is_only_version_">Perl %3.3f required--this is only version %s, stopped</A></STRONG><BR>
  2438. <DD>
  2439. (F) The module in question uses features of a version of Perl more recent
  2440. than the currently running version.  How long has it been since you upgraded,
  2441. anyway?  See <A HREF="../../lib/Pod/perlfunc.html#require">require in the perlfunc manpage</A>.
  2442. <P></P>
  2443. <DT><STRONG><A NAME="item_Permission_denied">Permission denied</A></STRONG><BR>
  2444. <DD>
  2445. (F) The setuid emulator in suidperl decided you were up to no good.
  2446. <P></P>
  2447. <DT><STRONG><A NAME="item_pid_%25x_not_a_child">pid %x not a child</A></STRONG><BR>
  2448. <DD>
  2449. (W exec) A warning peculiar to VMS.  <CODE>Waitpid()</CODE> was asked to wait for a process which
  2450. isn't a subprocess of the current process.  While this is fine from VMS'
  2451. perspective, it's probably not what you intended.
  2452. <P></P>
  2453. <DT><STRONG><A NAME="item_POSIX_getpgrp_can%27t_take_an_argument">POSIX getpgrp can't take an argument</A></STRONG><BR>
  2454. <DD>
  2455. (F) Your system has POSIX getpgrp(), which takes no argument, unlike
  2456. the BSD version, which takes a pid.
  2457. <P></P>
  2458. <DT><STRONG><A NAME="item_Possible_Y2K_bug%3A_%25s">Possible Y2K bug: %s</A></STRONG><BR>
  2459. <DD>
  2460. (W y2k) You are concatenating the number 19 with another number, which
  2461. could be a potential Year 2000 problem.
  2462. <P></P>
  2463. <DT><STRONG><A NAME="item_qw">Possible attempt to put comments in <CODE>qw()</CODE> list</A></STRONG><BR>
  2464. <DD>
  2465. (W qw) <A HREF="#item_qw"><CODE>qw()</CODE></A> lists contain items separated by whitespace; as with literal
  2466. strings, comment characters are not ignored, but are instead treated
  2467. as literal data.  (You may have used different delimiters than the
  2468. parentheses shown here; braces are also frequently used.)
  2469. <P>You probably wrote something like this:</P>
  2470. <PRE>
  2471.     @list = qw(
  2472.         a # a comment
  2473.         b # another comment
  2474.     );</PRE>
  2475. <P>when you should have written this:</P>
  2476. <PRE>
  2477.     @list = qw(
  2478.         a
  2479.         b
  2480.     );</PRE>
  2481. <P>If you really want comments, build your list the
  2482. old-fashioned way, with quotes and commas:</P>
  2483. <PRE>
  2484.     @list = (
  2485.         'a',    # a comment
  2486.         'b',    # another comment
  2487.     );</PRE>
  2488. <P></P>
  2489. <DT><STRONG><A NAME="item_Possible_attempt_to_separate_words_with_commas">Possible attempt to separate words with commas</A></STRONG><BR>
  2490. <DD>
  2491. (W qw) <A HREF="#item_qw"><CODE>qw()</CODE></A> lists contain items separated by whitespace; therefore commas
  2492. aren't needed to separate the items.  (You may have used different
  2493. delimiters than the parentheses shown here; braces are also frequently
  2494. used.)
  2495. <P>You probably wrote something like this:</P>
  2496. <PRE>
  2497.     qw! a, b, c !;</PRE>
  2498. <P>which puts literal commas into some of the list items.  Write it without
  2499. commas if you don't want them to appear in your data:</P>
  2500. <PRE>
  2501.     qw! a b c !;</PRE>
  2502. <P></P>
  2503. <DT><STRONG><A NAME="item_Possible_memory_corruption%3A_%25s_overflowed_3rd_">Possible memory corruption: %s overflowed 3rd argument</A></STRONG><BR>
  2504. <DD>
  2505. (F) An <A HREF="../../lib/Pod/perlfunc.html#item_ioctl"><CODE>ioctl()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_fcntl"><CODE>fcntl()</CODE></A> returned more than Perl was bargaining for.
  2506. Perl guesses a reasonable buffer size, but puts a sentinel byte at the
  2507. end of the buffer just in case.  This sentinel byte got clobbered, and
  2508. Perl assumes that memory is now corrupted.  See <A HREF="../../lib/Pod/perlfunc.html#ioctl">ioctl in the perlfunc manpage</A>.
  2509. <P></P>
  2510. <DT><STRONG><A NAME="item_pragma_%22attrs%22_is_deprecated%2C_use_%22sub_NAM">pragma ``attrs'' is deprecated, use ``sub NAME : ATTRS'' instead</A></STRONG><BR>
  2511. <DD>
  2512. (W deprecated) You have written somehing like this:
  2513. <PRE>
  2514.     sub doit
  2515.     {
  2516.         use attrs qw(locked);
  2517.     }</PRE>
  2518. <P>You should use the new declaration syntax instead.</P>
  2519. <PRE>
  2520.     sub doit : locked
  2521.     {
  2522.         ...</PRE>
  2523. <P>The <CODE>use attrs</CODE> pragma is now obsolete, and is only provided for
  2524. backward-compatibility. See <A HREF="../../lib/Pod/perlsub.html#subroutine attributes">Subroutine Attributes in the perlsub manpage</A>.</P>
  2525. <P></P>
  2526. <DT><STRONG><A NAME="item_open">Precedence problem: open %s should be <CODE>open(%s)</CODE></A></STRONG><BR>
  2527. <DD>
  2528. (S precedence) The old irregular construct
  2529. <PRE>
  2530.     open FOO || die;</PRE>
  2531. <P>is now misinterpreted as</P>
  2532. <PRE>
  2533.     open(FOO || die);</PRE>
  2534. <P>because of the strict regularization of Perl 5's grammar into unary
  2535. and list operators.  (The old open was a little of both.)  You must
  2536. put parentheses around the filehandle, or use the new ``or'' operator
  2537. instead of ``||''.</P>
  2538. <P></P>
  2539. <DT><STRONG><A NAME="item_Premature_end_of_script_headers">Premature end of script headers</A></STRONG><BR>
  2540. <DD>
  2541. See Server error.
  2542. <P></P>
  2543. <DT><STRONG><A NAME="item_print"><CODE>print()</CODE> on closed filehandle %s</A></STRONG><BR>
  2544. <DD>
  2545. (W closed) The filehandle you're printing on got itself closed sometime before now.
  2546. Check your logic flow.
  2547. <P></P>
  2548. <DT><STRONG><A NAME="item_printf"><CODE>printf()</CODE> on closed filehandle %s</A></STRONG><BR>
  2549. <DD>
  2550. (W closed) The filehandle you're writing to got itself closed sometime before now.
  2551. Check your logic flow.
  2552. <P></P>
  2553. <DT><STRONG><A NAME="item_Prototype_mismatch%3A_%25s_vs_%25s">Prototype mismatch: %s vs %s</A></STRONG><BR>
  2554. <DD>
  2555. (S unsafe) The subroutine being declared or defined had previously been declared
  2556. or defined with a different function prototype.
  2557. <P></P>
  2558. <DT><STRONG><A NAME="item_Range_iterator_outside_integer_range">Range iterator outside integer range</A></STRONG><BR>
  2559. <DD>
  2560. (F) One (or both) of the numeric arguments to the range operator ``..''
  2561. are outside the range which can be represented by integers internally.
  2562. One possible workaround is to force Perl to use magical string
  2563. increment by prepending ``0'' to your numbers.
  2564. <P></P>
  2565. <DT><STRONG><A NAME="item_readline"><CODE>readline()</CODE> on closed filehandle %s</A></STRONG><BR>
  2566. <DD>
  2567. (W closed) The filehandle you're reading from got itself closed sometime before now.
  2568. Check your logic flow.
  2569. <P></P>
  2570. <DT><STRONG><CODE>realloc()</CODE> of freed memory ignored</STRONG><BR>
  2571. <DD>
  2572. (S malloc) An internal routine called <A HREF="#item_realloc"><CODE>realloc()</CODE></A> on something that had already
  2573. been freed.
  2574. <P></P>
  2575. <DT><STRONG><A NAME="item_Reallocation_too_large%3A_%25lx">Reallocation too large: %lx</A></STRONG><BR>
  2576. <DD>
  2577. (F) You can't allocate more than 64K on an MS-DOS machine.
  2578. <P></P>
  2579. <DT><STRONG><A NAME="item_Recompile_perl_with_%2DDDEBUGGING_to_use_%2DD_swit">Recompile perl with <STRONG>-D</STRONG>DEBUGGING to use <STRONG>-D</STRONG> switch</A></STRONG><BR>
  2580. <DD>
  2581. (F debugging) You can't use the <STRONG>-D</STRONG> option unless the code to produce the
  2582. desired output is compiled into Perl, which entails some overhead,
  2583. which is why it's currently left out of your copy.
  2584. <P></P>
  2585. <DT><STRONG><A NAME="item_Recursive_inheritance_detected_in_package_%27%25s%">Recursive inheritance detected in package '%s'</A></STRONG><BR>
  2586. <DD>
  2587. (F) More than 100 levels of inheritance were used.  Probably indicates
  2588. an unintended loop in your inheritance hierarchy.
  2589. <P></P>
  2590. <DT><STRONG><A NAME="item_Recursive_inheritance_detected_while_looking_for_m">Recursive inheritance detected while looking for method '%s' in package '%s'</A></STRONG><BR>
  2591. <DD>
  2592. (F) More than 100 levels of inheritance were encountered while invoking a
  2593. method.  Probably indicates an unintended loop in your inheritance hierarchy.
  2594. <P></P>
  2595. <DT><STRONG><A NAME="item_Reference_found_where_even%2Dsized_list_expected">Reference found where even-sized list expected</A></STRONG><BR>
  2596. <DD>
  2597. (W misc) You gave a single reference where Perl was expecting a list with
  2598. an even number of elements (for assignment to a hash). This
  2599. usually means that you used the anon hash constructor when you meant 
  2600. to use parens. In any case, a hash requires key/value <STRONG>pairs</STRONG>.
  2601. <PRE>
  2602.     %hash = { one => 1, two => 2, };    # WRONG
  2603.     %hash = [ qw/ an anon array / ];    # WRONG
  2604.     %hash = ( one => 1, two => 2, );    # right
  2605.     %hash = qw( one 1 two 2 );                  # also fine</PRE>
  2606. <P></P>
  2607. <DT><STRONG><A NAME="item_Reference_is_already_weak">Reference is already weak</A></STRONG><BR>
  2608. <DD>
  2609. (W misc) You have attempted to weaken a reference that is already weak.
  2610. Doing so has no effect.
  2611. <P></P>
  2612. <DT><STRONG><A NAME="item_sv_replace">Reference miscount in <CODE>sv_replace()</CODE></A></STRONG><BR>
  2613. <DD>
  2614. (W internal) The internal <A HREF="#item_sv_replace"><CODE>sv_replace()</CODE></A> function was handed a new SV with a
  2615. reference count of other than 1.
  2616. <P></P>
  2617. <DT><STRONG><A NAME="item_regexp_%2A%2B_operand_could_be_empty">regexp *+ operand could be empty</A></STRONG><BR>
  2618. <DD>
  2619. (F) The part of the regexp subject to either the * or + quantifier
  2620. could match an empty string.
  2621. <P></P>
  2622. <DT><STRONG><A NAME="item_regexp_memory_corruption">regexp memory corruption</A></STRONG><BR>
  2623. <DD>
  2624. (P) The regular expression engine got confused by what the regular
  2625. expression compiler gave it.
  2626. <P></P>
  2627. <DT><STRONG><A NAME="item_regexp_out_of_space">regexp out of space</A></STRONG><BR>
  2628. <DD>
  2629. (P) A ``can't happen'' error, because <CODE>safemalloc()</CODE> should have caught it earlier.
  2630. <P></P>
  2631. <DT><STRONG><A NAME="item_Repeat_count_in_pack_overflows">Repeat count in pack overflows</A></STRONG><BR>
  2632. <DD>
  2633. (F) You can't specify a repeat count so large that it overflows
  2634. your signed integers.  See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  2635. <P></P>
  2636. <DT><STRONG><A NAME="item_Repeat_count_in_unpack_overflows">Repeat count in unpack overflows</A></STRONG><BR>
  2637. <DD>
  2638. (F) You can't specify a repeat count so large that it overflows
  2639. your signed integers.  See <A HREF="../../lib/Pod/perlfunc.html#unpack">unpack in the perlfunc manpage</A>.
  2640. <P></P>
  2641. <DT><STRONG><A NAME="item_Reversed_%25s%3D_operator">Reversed %s= operator</A></STRONG><BR>
  2642. <DD>
  2643. (W syntax) You wrote your assignment operator backwards.  The = must always
  2644. comes last, to avoid ambiguity with subsequent unary operators.
  2645. <P></P>
  2646. <DT><STRONG><A NAME="item_Runaway_format">Runaway format</A></STRONG><BR>
  2647. <DD>
  2648. (F) Your format contained the ~~ repeat-until-blank sequence, but it
  2649. produced 200 lines at once, and the 200th line looked exactly like the
  2650. 199th line.  Apparently you didn't arrange for the arguments to exhaust
  2651. themselves, either by using ^ instead of @ (for scalar variables), or by
  2652. shifting or popping (for array variables).  See <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A>.
  2653. <P></P>
  2654. <DT><STRONG><A NAME="item_Scalar_value_%40%25s%5B%25s%5D_better_written_as_%">Scalar value @%s[%s] better written as $%s[%s]</A></STRONG><BR>
  2655. <DD>
  2656. (W syntax) You've used an array slice (indicated by @) to select a single element of
  2657. an array.  Generally it's better to ask for a scalar value (indicated by $).
  2658. The difference is that <CODE>$foo[&bar]</CODE> always behaves like a scalar, both when
  2659. assigning to it and when evaluating its argument, while <CODE>@foo[&bar]</CODE> behaves
  2660. like a list when you assign to it, and provides a list context to its
  2661. subscript, which can do weird things if you're expecting only one subscript.
  2662. <P>On the other hand, if you were actually hoping to treat the array
  2663. element as a list, you need to look into how references work, because
  2664. Perl will not magically convert between scalars and lists for you.  See
  2665. <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.</P>
  2666. <P></P>
  2667. <DT><STRONG><A NAME="item_Scalar_value_%40%25s%7B%25s%7D_better_written_as_%">Scalar value @%s{%s} better written as $%s{%s}</A></STRONG><BR>
  2668. <DD>
  2669. (W syntax) You've used a hash slice (indicated by @) to select a single element of
  2670. a hash.  Generally it's better to ask for a scalar value (indicated by $).
  2671. The difference is that <CODE>$foo{&bar}</CODE> always behaves like a scalar, both when
  2672. assigning to it and when evaluating its argument, while <CODE>@foo{&bar}</CODE> behaves
  2673. like a list when you assign to it, and provides a list context to its
  2674. subscript, which can do weird things if you're expecting only one subscript.
  2675. <P>On the other hand, if you were actually hoping to treat the hash
  2676. element as a list, you need to look into how references work, because
  2677. Perl will not magically convert between scalars and lists for you.  See
  2678. <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.</P>
  2679. <P></P>
  2680. <DT><STRONG><A NAME="item_Script_is_not_setuid%2Fsetgid_in_suidperl">Script is not setuid/setgid in suidperl</A></STRONG><BR>
  2681. <DD>
  2682. (F) Oddly, the suidperl program was invoked on a script without a setuid
  2683. or setgid bit set.  This doesn't make much sense.
  2684. <P></P>
  2685. <DT><STRONG><A NAME="item_Search_pattern_not_terminated">Search pattern not terminated</A></STRONG><BR>
  2686. <DD>
  2687. (F) The lexer couldn't find the final delimiter of a // or m{}
  2688. construct.  Remember that bracketing delimiters count nesting level.
  2689. Missing the leading <CODE>$</CODE> from a variable <CODE>$m</CODE> may cause this error.
  2690. <P></P>
  2691. <DT><STRONG><A NAME="item_sseek">%sseek() on unopened file</A></STRONG><BR>
  2692. <DD>
  2693. (W unopened) You tried to use the <A HREF="../../lib/Pod/perlfunc.html#item_seek"><CODE>seek()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_sysseek"><CODE>sysseek()</CODE></A> function on a filehandle that
  2694. was either never opened or has since been closed.
  2695. <P></P>
  2696. <DT><STRONG><A NAME="item_select_not_implemented">select not implemented</A></STRONG><BR>
  2697. <DD>
  2698. (F) This machine doesn't implement the <A HREF="../../lib/Pod/perlfunc.html#item_select"><CODE>select()</CODE></A> system call.
  2699. <P></P>
  2700. <DT><STRONG><A NAME="item_sem%25s_not_implemented">sem%s not implemented</A></STRONG><BR>
  2701. <DD>
  2702. (F) You don't have System V semaphore IPC on your system.
  2703. <P></P>
  2704. <DT><STRONG><A NAME="item_semi%2Dpanic%3A_attempt_to_dup_freed_string">semi-panic: attempt to dup freed string</A></STRONG><BR>
  2705. <DD>
  2706. (S internal) The internal <CODE>newSVsv()</CODE> routine was called to duplicate a scalar
  2707. that had previously been marked as free.
  2708. <P></P>
  2709. <DT><STRONG><A NAME="item_Semicolon_seems_to_be_missing">Semicolon seems to be missing</A></STRONG><BR>
  2710. <DD>
  2711. (W semicolon) A nearby syntax error was probably caused by a missing semicolon,
  2712. or possibly some other missing operator, such as a comma.
  2713. <P></P>
  2714. <DT><STRONG><A NAME="item_send"><CODE>send()</CODE> on closed socket %s</A></STRONG><BR>
  2715. <DD>
  2716. (W closed) The socket you're sending to got itself closed sometime before now.
  2717. Check your logic flow.
  2718. <P></P>
  2719. <DT><STRONG><A NAME="item_Sequence">Sequence (? incomplete</A></STRONG><BR>
  2720. <DD>
  2721. (F) A regular expression ended with an incomplete extension (?.
  2722. See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  2723. <P></P>
  2724. <DT><STRONG>Sequence (?#... not terminated</STRONG><BR>
  2725. <DD>
  2726. (F) A regular expression comment must be terminated by a closing
  2727. parenthesis.  Embedded parentheses aren't allowed.  See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  2728. <P></P>
  2729. <DT><STRONG>Sequence (?%s...) not implemented</STRONG><BR>
  2730. <DD>
  2731. (F) A proposed regular expression extension has the character reserved
  2732. but has not yet been written.  See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  2733. <P></P>
  2734. <DT><STRONG>Sequence (?%s...) not recognized</STRONG><BR>
  2735. <DD>
  2736. (F) You used a regular expression extension that doesn't make sense.
  2737. See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  2738. <P></P>
  2739. <DT><STRONG>Server error</STRONG><BR>
  2740. <DD>
  2741. This is the error message generally seen in a browser window when trying
  2742. to run a CGI program (including SSI) over the web. The actual error
  2743. text varies widely from server to server. The most frequently-seen
  2744. variants are ``500 Server error'', ``Method (something) not permitted'',
  2745. ``Document contains no data'', ``Premature end of script headers'', and
  2746. ``Did not produce a valid header''.
  2747. <P><STRONG>This is a CGI error, not a Perl error</STRONG>.</P>
  2748. <P>You need to make sure your script is executable, is accessible by the user
  2749. CGI is running the script under (which is probably not the user account you
  2750. tested it under), does not rely on any environment variables (like PATH)
  2751. from the user it isn't running under, and isn't in a location where the CGI
  2752. server can't find it, basically, more or less.  Please see the following
  2753. for more information:</P>
  2754. <PRE>
  2755.         <A HREF="http://www.perl.com/CPAN/doc/FAQs/cgi/idiots-guide.html">http://www.perl.com/CPAN/doc/FAQs/cgi/idiots-guide.html</A>
  2756.         <A HREF="http://www.perl.com/CPAN/doc/FAQs/cgi/perl-cgi-faq.html">http://www.perl.com/CPAN/doc/FAQs/cgi/perl-cgi-faq.html</A>
  2757.         <A HREF="ftp://rtfm.mit.edu/pub/usenet/news.answers/www/cgi-faq">ftp://rtfm.mit.edu/pub/usenet/news.answers/www/cgi-faq</A>
  2758.         <A HREF="http://hoohoo.ncsa.uiuc.edu/cgi/interface.html">http://hoohoo.ncsa.uiuc.edu/cgi/interface.html</A>
  2759.         <A HREF="http://www-genome.wi.mit.edu/WWW/faqs/www-security-faq.html">http://www-genome.wi.mit.edu/WWW/faqs/www-security-faq.html</A></PRE>
  2760. <P>You should also look at <A HREF="../../lib/Pod/perlfaq9.html">the perlfaq9 manpage</A>.</P>
  2761. <P></P>
  2762. <DT><STRONG><A NAME="item_setegid"><CODE>setegid()</CODE> not implemented</A></STRONG><BR>
  2763. <DD>
  2764. (F) You tried to assign to <CODE>$)</CODE>, and your operating system doesn't support
  2765. the <A HREF="#item_setegid"><CODE>setegid()</CODE></A> system call (or equivalent), or at least Configure didn't
  2766. think so.
  2767. <P></P>
  2768. <DT><STRONG><A NAME="item_seteuid"><CODE>seteuid()</CODE> not implemented</A></STRONG><BR>
  2769. <DD>
  2770. (F) You tried to assign to <CODE>$></CODE>, and your operating system doesn't support
  2771. the <A HREF="#item_seteuid"><CODE>seteuid()</CODE></A> system call (or equivalent), or at least Configure didn't
  2772. think so.
  2773. <P></P>
  2774. <DT><STRONG><A NAME="item_setpgrp_can%27t_take_arguments">setpgrp can't take arguments</A></STRONG><BR>
  2775. <DD>
  2776. (F) Your system has the <A HREF="../../lib/Pod/perlfunc.html#item_setpgrp"><CODE>setpgrp()</CODE></A> from BSD 4.2, which takes no arguments,
  2777. unlike POSIX setpgid(), which takes a process ID and process group ID.
  2778. <P></P>
  2779. <DT><STRONG><A NAME="item_setrgid"><CODE>setrgid()</CODE> not implemented</A></STRONG><BR>
  2780. <DD>
  2781. (F) You tried to assign to <CODE>$(</CODE>, and your operating system doesn't support
  2782. the <A HREF="#item_setrgid"><CODE>setrgid()</CODE></A> system call (or equivalent), or at least Configure didn't
  2783. think so.
  2784. <P></P>
  2785. <DT><STRONG><A NAME="item_setruid"><CODE>setruid()</CODE> not implemented</A></STRONG><BR>
  2786. <DD>
  2787. (F) You tried to assign to <CODE>$<</CODE>, and your operating system doesn't support
  2788. the <A HREF="#item_setruid"><CODE>setruid()</CODE></A> system call (or equivalent), or at least Configure didn't
  2789. think so.
  2790. <P></P>
  2791. <DT><STRONG><A NAME="item_Setuid%2Fgid_script_is_writable_by_world">Setuid/gid script is writable by world</A></STRONG><BR>
  2792. <DD>
  2793. (F) The setuid emulator won't run a script that is writable by the world,
  2794. because the world might have written on it already.
  2795. <P></P>
  2796. <DT><STRONG><A NAME="item_shm%25s_not_implemented">shm%s not implemented</A></STRONG><BR>
  2797. <DD>
  2798. (F) You don't have System V shared memory IPC on your system.
  2799. <P></P>
  2800. <DT><STRONG><A NAME="item_shutdown"><CODE>shutdown()</CODE> on closed socket %s</A></STRONG><BR>
  2801. <DD>
  2802. (W closed) You tried to do a shutdown on a closed socket.  Seems a bit superfluous.
  2803. <P></P>
  2804. <DT><STRONG><A NAME="item_SIG%25s_handler_%22%25s%22_not_defined">SIG%s handler ``%s'' not defined</A></STRONG><BR>
  2805. <DD>
  2806. (W signal) The signal handler named in %SIG doesn't, in fact, exist.  Perhaps you
  2807. put it into the wrong package?
  2808. <P></P>
  2809. <DT><STRONG><A NAME="item_sort_is_now_a_reserved_word">sort is now a reserved word</A></STRONG><BR>
  2810. <DD>
  2811. (F) An ancient error message that almost nobody ever runs into anymore.
  2812. But before sort was a keyword, people sometimes used it as a filehandle.
  2813. <P></P>
  2814. <DT><STRONG><A NAME="item_Sort_subroutine_didn%27t_return_a_numeric_value">Sort subroutine didn't return a numeric value</A></STRONG><BR>
  2815. <DD>
  2816. (F) A sort comparison routine must return a number.  You probably blew
  2817. it by not using <CODE><=></CODE> or <CODE>cmp</CODE>, or by not using them correctly.
  2818. See <A HREF="../../lib/Pod/perlfunc.html#sort">sort in the perlfunc manpage</A>.
  2819. <P></P>
  2820. <DT><STRONG><A NAME="item_Sort_subroutine_didn%27t_return_single_value">Sort subroutine didn't return single value</A></STRONG><BR>
  2821. <DD>
  2822. (F) A sort comparison subroutine may not return a list value with more
  2823. or less than one element.  See <A HREF="../../lib/Pod/perlfunc.html#sort">sort in the perlfunc manpage</A>.
  2824. <P></P>
  2825. <DT><STRONG><A NAME="item_Split_loop">Split loop</A></STRONG><BR>
  2826. <DD>
  2827. (P) The split was looping infinitely.  (Obviously, a split shouldn't iterate
  2828. more times than there are characters of input, which is what happened.)
  2829. See <A HREF="../../lib/Pod/perlfunc.html#split">split in the perlfunc manpage</A>.
  2830. <P></P>
  2831. <DT><STRONG><A NAME="item_Stat_on_unopened_file_%3C%25s%3E">Stat on unopened file <%s></A></STRONG><BR>
  2832. <DD>
  2833. (W unopened) You tried to use the <A HREF="../../lib/Pod/perlfunc.html#item_stat"><CODE>stat()</CODE></A> function (or an equivalent file test)
  2834. on a filehandle that was either never opened or has since been closed.
  2835. <P></P>
  2836. <DT><STRONG><A NAME="item_Statement_unlikely_to_be_reached">Statement unlikely to be reached</A></STRONG><BR>
  2837. <DD>
  2838. (W exec) You did an <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec()</CODE></A> with some statement after it other than a die().
  2839. This is almost always an error, because <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec()</CODE></A> never returns unless
  2840. there was a failure.  You probably wanted to use <A HREF="../../lib/Pod/perlfunc.html#item_system"><CODE>system()</CODE></A> instead,
  2841. which does return.  To suppress this warning, put the <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec()</CODE></A> in a block
  2842. by itself.
  2843. <P></P>
  2844. <DT><STRONG><A NAME="item_Strange_%2A%2B%3F%7B%7D_on_zero%2Dlength_expressio">Strange *+?{} on zero-length expression</A></STRONG><BR>
  2845. <DD>
  2846. (W regexp) You applied a regular expression quantifier in a place where it
  2847. makes no sense, such as on a zero-width assertion.
  2848. Try putting the quantifier inside the assertion instead.  For example,
  2849. the way to match ``abc'' provided that it is followed by three
  2850. repetitions of ``xyz'' is <CODE>/abc(?=(?:xyz){3})/</CODE>, not <CODE>/abc(?=xyz){3}/</CODE>.
  2851. <P></P>
  2852. <DT><STRONG><A NAME="item_Stub_found_while_resolving_method_%60%25s%27_overl">Stub found while resolving method `%s' overloading `%s' in package `%s'</A></STRONG><BR>
  2853. <DD>
  2854. (P) Overloading resolution over @ISA tree may be broken by importation stubs.
  2855. Stubs should never be implicitely created, but explicit calls to <CODE>can</CODE>
  2856. may break this.
  2857. <P></P>
  2858. <DT><STRONG><A NAME="item_Subroutine_%25s_redefined">Subroutine %s redefined</A></STRONG><BR>
  2859. <DD>
  2860. (W redefine) You redefined a subroutine.  To suppress this warning, say
  2861. <PRE>
  2862.     {
  2863.         no warnings;
  2864.         eval "sub name { ... }";
  2865.     }</PRE>
  2866. <P></P>
  2867. <DT><STRONG><A NAME="item_Substitution_loop">Substitution loop</A></STRONG><BR>
  2868. <DD>
  2869. (P) The substitution was looping infinitely.  (Obviously, a
  2870. substitution shouldn't iterate more times than there are characters of
  2871. input, which is what happened.)  See the discussion of substitution in
  2872. <A HREF="../../lib/Pod/perlop.html#quote and quotelike operators">Quote and Quote-like Operators in the perlop manpage</A>.
  2873. <P></P>
  2874. <DT><STRONG><A NAME="item_Substitution_pattern_not_terminated">Substitution pattern not terminated</A></STRONG><BR>
  2875. <DD>
  2876. (F) The lexer couldn't find the interior delimiter of a s/// or s{}{}
  2877. construct.  Remember that bracketing delimiters count nesting level.
  2878. Missing the leading <CODE>$</CODE> from variable <CODE>$s</CODE> may cause this error.
  2879. <P></P>
  2880. <DT><STRONG><A NAME="item_Substitution_replacement_not_terminated">Substitution replacement not terminated</A></STRONG><BR>
  2881. <DD>
  2882. (F) The lexer couldn't find the final delimiter of a s/// or s{}{}
  2883. construct.  Remember that bracketing delimiters count nesting level.
  2884. Missing the leading <CODE>$</CODE> from variable <CODE>$s</CODE> may cause this error.
  2885. <P></P>
  2886. <DT><STRONG><A NAME="item_substr_outside_of_string">substr outside of string</A></STRONG><BR>
  2887. <DD>
  2888. (W substr),(F) You tried to reference a <A HREF="../../lib/Pod/perlfunc.html#item_substr"><CODE>substr()</CODE></A> that pointed outside of a
  2889. string.  That is, the absolute value of the offset was larger than the
  2890. length of the string.  See <A HREF="../../lib/Pod/perlfunc.html#substr">substr in the perlfunc manpage</A>.  This warning is
  2891. fatal if substr is used in an lvalue context (as the left hand side
  2892. of an assignment or as a subroutine argument for example).
  2893. <P></P>
  2894. <DT><STRONG><A NAME="item_suidperl_is_no_longer_needed_since_%25s">suidperl is no longer needed since %s</A></STRONG><BR>
  2895. <DD>
  2896. (F) Your Perl was compiled with <STRONG>-D</STRONG>SETUID_SCRIPTS_ARE_SECURE_NOW, but a
  2897. version of the setuid emulator somehow got run anyway.
  2898. <P></P>
  2899. <DT><STRONG><A NAME="item_switching_effective_%25s_is_not_implemented">switching effective %s is not implemented</A></STRONG><BR>
  2900. <DD>
  2901. (F) While under the <CODE>use filetest</CODE> pragma, we cannot switch the
  2902. real and effective uids or gids.
  2903. <P></P>
  2904. <DT><STRONG><A NAME="item_syntax_error">syntax error</A></STRONG><BR>
  2905. <DD>
  2906. (F) Probably means you had a syntax error.  Common reasons include:
  2907. <PRE>
  2908.     A keyword is misspelled.
  2909.     A semicolon is missing.
  2910.     A comma is missing.
  2911.     An opening or closing parenthesis is missing.
  2912.     An opening or closing brace is missing.
  2913.     A closing quote is missing.</PRE>
  2914. <P>Often there will be another error message associated with the syntax
  2915. error giving more information.  (Sometimes it helps to turn on <STRONG>-w</STRONG>.)
  2916. The error message itself often tells you where it was in the line when
  2917. it decided to give up.  Sometimes the actual error is several tokens
  2918. before this, because Perl is good at understanding random input.
  2919. Occasionally the line number may be misleading, and once in a blue moon
  2920. the only way to figure out what's triggering the error is to call
  2921. <CODE>perl -c</CODE> repeatedly, chopping away half the program each time to see
  2922. if the error went away.  Sort of the cybernetic version of 20 questions.</P>
  2923. <P></P>
  2924. <DT><STRONG><A NAME="item_syntax_error_at_line_%25d%3A_%60%25s%27_unexpected">syntax error at line %d: `%s' unexpected</A></STRONG><BR>
  2925. <DD>
  2926. (A) You've accidentally run your script through the Bourne shell
  2927. instead of Perl.  Check the #! line, or manually feed your script
  2928. into Perl yourself.
  2929. <P></P>
  2930. <DT><STRONG><A NAME="item_System_V_%25s_is_not_implemented_on_this_machine">System V %s is not implemented on this machine</A></STRONG><BR>
  2931. <DD>
  2932. (F) You tried to do something with a function beginning with ``sem'',
  2933. ``shm'', or ``msg'' but that System V IPC is not implemented in your
  2934. machine.  In some machines the functionality can exist but be
  2935. unconfigured.  Consult your system support.
  2936. <P></P>
  2937. <DT><STRONG><A NAME="item_syswrite"><CODE>syswrite()</CODE> on closed filehandle %s</A></STRONG><BR>
  2938. <DD>
  2939. (W closed) The filehandle you're writing to got itself closed sometime before now.
  2940. Check your logic flow.
  2941. <P></P>
  2942. <DT><STRONG><A NAME="item_Target_of_goto_is_too_deeply_nested">Target of goto is too deeply nested</A></STRONG><BR>
  2943. <DD>
  2944. (F) You tried to use <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A> to reach a label that was too deeply
  2945. nested for Perl to reach.  Perl is doing you a favor by refusing.
  2946. <P></P>
  2947. <DT><STRONG><A NAME="item_tell"><CODE>tell()</CODE> on unopened file</A></STRONG><BR>
  2948. <DD>
  2949. (W unopened) You tried to use the <A HREF="#item_tell"><CODE>tell()</CODE></A> function on a filehandle that was either
  2950. never opened or has since been closed.
  2951. <P></P>
  2952. <DT><STRONG><A NAME="item_Test_on_unopened_file_%3C%25s%3E">Test on unopened file <%s></A></STRONG><BR>
  2953. <DD>
  2954. (W unopened) You tried to invoke a file test operator on a filehandle that isn't
  2955. open.  Check your logic.  See also <A HREF="../../lib/Pod/perlfunc.html#x">-X in the perlfunc manpage</A>.
  2956. <P></P>
  2957. <DT><STRONG><A NAME="item_That_use_of_%24%5B_is_unsupported">That use of $[ is unsupported</A></STRONG><BR>
  2958. <DD>
  2959. (F) Assignment to <CODE>$[</CODE> is now strictly circumscribed, and interpreted as
  2960. a compiler directive.  You may say only one of
  2961. <PRE>
  2962.     $[ = 0;
  2963.     $[ = 1;
  2964.     ...
  2965.     local $[ = 0;
  2966.     local $[ = 1;
  2967.     ...</PRE>
  2968. <P>This is to prevent the problem of one module changing the array base
  2969. out from under another module inadvertently.  See <A HREF="../../lib/Pod/perlvar.html#$[">$[ in the perlvar manpage</A>.</P>
  2970. <P></P>
  2971. <DT><STRONG><A NAME="item_The_%25s_function_is_unimplemented">The %s function is unimplemented</A></STRONG><BR>
  2972. <DD>
  2973. The function indicated isn't implemented on this architecture, according
  2974. to the probings of Configure.
  2975. <P></P>
  2976. <DT><STRONG><A NAME="item_crypt">The <CODE>crypt()</CODE> function is unimplemented due to excessive paranoia</A></STRONG><BR>
  2977. <DD>
  2978. (F) Configure couldn't find the <A HREF="#item_crypt"><CODE>crypt()</CODE></A> function on your machine,
  2979. probably because your vendor didn't supply it, probably because they
  2980. think the U.S. Government thinks it's a secret, or at least that they
  2981. will continue to pretend that it is.  And if you quote me on that, I
  2982. will deny it.
  2983. <P></P>
  2984. <DT><STRONG><A NAME="item_The_stat_preceding_%2Dl___wasn%27t_an_lstat">The stat preceding <CODE>-l _</CODE> wasn't an lstat</A></STRONG><BR>
  2985. <DD>
  2986. (F) It makes no sense to test the current stat buffer for symbolic linkhood
  2987. if the last stat that wrote to the stat buffer already went past
  2988. the symlink to get to the real file.  Use an actual filename instead.
  2989. <P></P>
  2990. <DT><STRONG><A NAME="item_elements">This Perl can't reset CRTL environ elements (%s)</A></STRONG><BR>
  2991. <DD>
  2992. <DT><STRONG>This Perl can't set CRTL environ elements (%s=%s)</STRONG><BR>
  2993. <DD>
  2994. (W internal) Warnings peculiar to VMS.  You tried to change or delete an element
  2995. of the CRTL's internal environ array, but your copy of Perl wasn't
  2996. built with a CRTL that contained the <CODE>setenv()</CODE> function.  You'll need to
  2997. rebuild Perl with a CRTL that does, or redefine <EM>PERL_ENV_TABLES</EM> (see
  2998. <A HREF="../../lib/Pod/perlvms.html">the perlvms manpage</A>) so that the environ array isn't the target of the change to
  2999. %ENV which produced the warning.
  3000. <P></P>
  3001. <DT><STRONG><A NAME="item_times_not_implemented">times not implemented</A></STRONG><BR>
  3002. <DD>
  3003. (F) Your version of the C library apparently doesn't do times().  I suspect
  3004. you're not running on Unix.
  3005. <P></P>
  3006. <DT><STRONG><A NAME="item_Too_few_args_to_syscall">Too few args to syscall</A></STRONG><BR>
  3007. <DD>
  3008. (F) There has to be at least one argument to <A HREF="../../lib/Pod/perlfunc.html#item_syscall"><CODE>syscall()</CODE></A> to specify the
  3009. system call to call, silly dilly.
  3010. <P></P>
  3011. <DT><STRONG><A NAME="item_Too_late_for_%22%2DT%22_option">Too late for ``<STRONG>-T</STRONG>'' option</A></STRONG><BR>
  3012. <DD>
  3013. (X) The #! line (or local equivalent) in a Perl script contains the
  3014. <STRONG>-T</STRONG> option, but Perl was not invoked with <STRONG>-T</STRONG> in its command line.
  3015. This is an error because, by the time Perl discovers a <STRONG>-T</STRONG> in a
  3016. script, it's too late to properly taint everything from the environment.
  3017. So Perl gives up.
  3018. <P>If the Perl script is being executed as a command using the #!
  3019. mechanism (or its local equivalent), this error can usually be fixed
  3020. by editing the #! line so that the <STRONG>-T</STRONG> option is a part of Perl's
  3021. first argument: e.g. change <CODE>perl -n -T</CODE> to <CODE>perl -T -n</CODE>.</P>
  3022. <P>If the Perl script is being executed as <CODE>perl scriptname</CODE>, then the
  3023. <STRONG>-T</STRONG> option must appear on the command line: <CODE>perl -T scriptname</CODE>.</P>
  3024. <P></P>
  3025. <DT><STRONG><A NAME="item_Too_late_for_%22%2D%25s%22_option">Too late for ``-%s'' option</A></STRONG><BR>
  3026. <DD>
  3027. (X) The #! line (or local equivalent) in a Perl script contains the
  3028. <STRONG>-M</STRONG> or <STRONG>-m</STRONG> option.  This is an error because <STRONG>-M</STRONG> and <STRONG>-m</STRONG> options
  3029. are not intended for use inside scripts.  Use the <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> pragma instead.
  3030. <P></P>
  3031. <DT><STRONG><A NAME="item_Too_late_to_run_%25s_block">Too late to run %s block</A></STRONG><BR>
  3032. <DD>
  3033. (W void) A CHECK or INIT block is being defined during run time proper,
  3034. when the opportunity to run them has already passed.  Perhaps you are
  3035. loading a file with <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A> when you should be using
  3036. <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> instead.  Or perhaps you should put the <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A>
  3037. inside a BEGIN block.
  3038. <P></P>
  3039. <DT><STRONG><A NAME="item_many">Too many ('s</A></STRONG><BR>
  3040. <DD>
  3041. <DT><STRONG><A NAME="item_Too_many_%29%27s">Too many )'s</A></STRONG><BR>
  3042. <DD>
  3043. (A) You've accidentally run your script through <STRONG>csh</STRONG> instead
  3044. of Perl.  Check the #! line, or manually feed your script into
  3045. Perl yourself.
  3046. <P></P>
  3047. <DT><STRONG><A NAME="item_Too_many_args_to_syscall">Too many args to syscall</A></STRONG><BR>
  3048. <DD>
  3049. (F) Perl supports a maximum of only 14 args to syscall().
  3050. <P></P>
  3051. <DT><STRONG><A NAME="item_Too_many_arguments_for_%25s">Too many arguments for %s</A></STRONG><BR>
  3052. <DD>
  3053. (F) The function requires fewer arguments than you specified.
  3054. <P></P>
  3055. <DT><STRONG><A NAME="item_trailing_%5C_in_regexp">trailing \ in regexp</A></STRONG><BR>
  3056. <DD>
  3057. (F) The regular expression ends with an unbackslashed backslash.  Backslash
  3058. it.   See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  3059. <P></P>
  3060. <DT><STRONG><A NAME="item_Transliteration_pattern_not_terminated">Transliteration pattern not terminated</A></STRONG><BR>
  3061. <DD>
  3062. (F) The lexer couldn't find the interior delimiter of a tr/// or tr[][]
  3063. or y/// or y[][] construct.  Missing the leading <CODE>$</CODE> from variables
  3064. <CODE>$tr</CODE> or <CODE>$y</CODE> may cause this error.
  3065. <P></P>
  3066. <DT><STRONG><A NAME="item_Transliteration_replacement_not_terminated">Transliteration replacement not terminated</A></STRONG><BR>
  3067. <DD>
  3068. (F) The lexer couldn't find the final delimiter of a tr/// or tr[][]
  3069. construct.
  3070. <P></P>
  3071. <DT><STRONG><A NAME="item_truncate_not_implemented">truncate not implemented</A></STRONG><BR>
  3072. <DD>
  3073. (F) Your machine doesn't implement a file truncation mechanism that
  3074. Configure knows about.
  3075. <P></P>
  3076. <DT><STRONG>Type of arg %d to %s must be %s (not %s)</STRONG><BR>
  3077. <DD>
  3078. (F) This function requires the argument in that position to be of a
  3079. certain type.  Arrays must be @NAME or <CODE>@{EXPR}</CODE>.  Hashes must be
  3080. %NAME or <CODE>%{EXPR}</CODE>.  No implicit dereferencing is allowed--use the
  3081. {EXPR} forms as an explicit dereference.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  3082. <P></P>
  3083. <DT><STRONG><A NAME="item_umask%3A_argument_is_missing_initial_0">umask: argument is missing initial 0</A></STRONG><BR>
  3084. <DD>
  3085. (W umask) A umask of 222 is incorrect.  It should be 0222, because octal
  3086. literals always start with 0 in Perl, as in C.
  3087. <P></P>
  3088. <DT><STRONG><A NAME="item_umask_not_implemented">umask not implemented</A></STRONG><BR>
  3089. <DD>
  3090. (F) Your machine doesn't implement the umask function and you tried
  3091. to use it to restrict permissions for yourself (EXPR & 0700).
  3092. <P></P>
  3093. <DT><STRONG><A NAME="item_Unable_to_create_sub_named_%22%25s%22">Unable to create sub named ``%s''</A></STRONG><BR>
  3094. <DD>
  3095. (F) You attempted to create or access a subroutine with an illegal name.
  3096. <P></P>
  3097. <DT><STRONG><A NAME="item_Unbalanced_context%3A_%25d_more_PUSHes_than_POPs">Unbalanced context: %d more PUSHes than POPs</A></STRONG><BR>
  3098. <DD>
  3099. (W internal) The exit code detected an internal inconsistency in how many execution
  3100. contexts were entered and left.
  3101. <P></P>
  3102. <DT><STRONG><A NAME="item_Unbalanced_saves%3A_%25d_more_saves_than_restores">Unbalanced saves: %d more saves than restores</A></STRONG><BR>
  3103. <DD>
  3104. (W internal) The exit code detected an internal inconsistency in how many
  3105. values were temporarily localized.
  3106. <P></P>
  3107. <DT><STRONG><A NAME="item_Unbalanced_scopes%3A_%25d_more_ENTERs_than_LEAVEs">Unbalanced scopes: %d more ENTERs than LEAVEs</A></STRONG><BR>
  3108. <DD>
  3109. (W internal) The exit code detected an internal inconsistency in how many blocks
  3110. were entered and left.
  3111. <P></P>
  3112. <DT><STRONG><A NAME="item_Unbalanced_tmps%3A_%25d_more_allocs_than_frees">Unbalanced tmps: %d more allocs than frees</A></STRONG><BR>
  3113. <DD>
  3114. (W internal) The exit code detected an internal inconsistency in how many mortal
  3115. scalars were allocated and freed.
  3116. <P></P>
  3117. <DT><STRONG><A NAME="item_Undefined_format_%22%25s%22_called">Undefined format ``%s'' called</A></STRONG><BR>
  3118. <DD>
  3119. (F) The format indicated doesn't seem to exist.  Perhaps it's really in
  3120. another package?  See <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A>.
  3121. <P></P>
  3122. <DT><STRONG><A NAME="item_Undefined_sort_subroutine_%22%25s%22_called">Undefined sort subroutine ``%s'' called</A></STRONG><BR>
  3123. <DD>
  3124. (F) The sort comparison routine specified doesn't seem to exist.  Perhaps
  3125. it's in a different package?  See <A HREF="../../lib/Pod/perlfunc.html#sort">sort in the perlfunc manpage</A>.
  3126. <P></P>
  3127. <DT><STRONG><A NAME="item_Undefined_subroutine_%26%25s_called">Undefined subroutine &%s called</A></STRONG><BR>
  3128. <DD>
  3129. (F) The subroutine indicated hasn't been defined, or if it was, it
  3130. has since been undefined.
  3131. <P></P>
  3132. <DT><STRONG><A NAME="item_Undefined_subroutine_called">Undefined subroutine called</A></STRONG><BR>
  3133. <DD>
  3134. (F) The anonymous subroutine you're trying to call hasn't been defined,
  3135. or if it was, it has since been undefined.
  3136. <P></P>
  3137. <DT><STRONG><A NAME="item_Undefined_subroutine_in_sort">Undefined subroutine in sort</A></STRONG><BR>
  3138. <DD>
  3139. (F) The sort comparison routine specified is declared but doesn't seem to
  3140. have been defined yet.  See <A HREF="../../lib/Pod/perlfunc.html#sort">sort in the perlfunc manpage</A>.
  3141. <P></P>
  3142. <DT><STRONG><A NAME="item_Undefined_top_format_%22%25s%22_called">Undefined top format ``%s'' called</A></STRONG><BR>
  3143. <DD>
  3144. (F) The format indicated doesn't seem to exist.  Perhaps it's really in
  3145. another package?  See <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A>.
  3146. <P></P>
  3147. <DT><STRONG><A NAME="item_Undefined_value_assigned_to_typeglob">Undefined value assigned to typeglob</A></STRONG><BR>
  3148. <DD>
  3149. (W misc) An undefined value was assigned to a typeglob, a la <CODE>*foo = undef</CODE>.
  3150. This does nothing.  It's possible that you really mean <CODE>undef *foo</CODE>.
  3151. <P></P>
  3152. <DT><STRONG><A NAME="item_unexec_of_%25s_into_%25s_failed%21">unexec of %s into %s failed!</A></STRONG><BR>
  3153. <DD>
  3154. (F) The <CODE>unexec()</CODE> routine failed for some reason.  See your local FSF
  3155. representative, who probably put it there in the first place.
  3156. <P></P>
  3157. <DT><STRONG><A NAME="item_Unknown_BYTEORDER">Unknown BYTEORDER</A></STRONG><BR>
  3158. <DD>
  3159. (F) There are no byte-swapping functions for a machine with this byte order.
  3160. <P></P>
  3161. <DT><STRONG>Unknown <CODE>open()</CODE> mode '%s'</STRONG><BR>
  3162. <DD>
  3163. (F) The second argument of 3-argument <A HREF="#item_open"><CODE>open()</CODE></A> is not among the list
  3164. of valid modes: <CODE><</CODE>, <CODE>></CODE>, <CODE>>></CODE>, <CODE>+<</CODE>,
  3165. <CODE>+></CODE>, <CODE>+>></CODE>, <CODE>-|</CODE>, <CODE>|-</CODE>.
  3166. <P></P>
  3167. <DT><STRONG><A NAME="item_Unknown_process_%25x_sent_message_to_prime_env_ite">Unknown process %x sent message to prime_env_iter: %s</A></STRONG><BR>
  3168. <DD>
  3169. (P) An error peculiar to VMS.  Perl was reading values for %ENV before
  3170. iterating over it, and someone else stuck a message in the stream of
  3171. data Perl expected.  Someone's very confused, or perhaps trying to
  3172. subvert Perl's population of %ENV for nefarious purposes.
  3173. <P></P>
  3174. <DT><STRONG><A NAME="item_unmatched">unmatched () in regexp</A></STRONG><BR>
  3175. <DD>
  3176. (F) Unbackslashed parentheses must always be balanced in regular
  3177. expressions.  If you're a vi user, the % key is valuable for finding
  3178. the matching parenthesis.  See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  3179. <P></P>
  3180. <DT><STRONG><A NAME="item_Unmatched_right_%25s_bracket">Unmatched right %s bracket</A></STRONG><BR>
  3181. <DD>
  3182. (F) The lexer counted more closing curly or square brackets than
  3183. opening ones, so you're probably missing a matching opening bracket.
  3184. As a general rule, you'll find the missing one (so to speak) near the
  3185. place you were last editing.
  3186. <P></P>
  3187. <DT><STRONG><A NAME="item_unmatched_%5B%5D_in_regexp">unmatched [] in regexp</A></STRONG><BR>
  3188. <DD>
  3189. (F) The brackets around a character class must match.  If you wish to
  3190. include a closing bracket in a character class, backslash it or put it first.
  3191. See <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>.
  3192. <P></P>
  3193. <DT><STRONG><A NAME="item_Unquoted_string_%22%25s%22_may_clash_with_future_r">Unquoted string ``%s'' may clash with future reserved word</A></STRONG><BR>
  3194. <DD>
  3195. (W reserved) You used a bareword that might someday be claimed as a reserved word.
  3196. It's best to put such a word in quotes, or capitalize it somehow, or insert
  3197. an underbar into it.  You might also declare it as a subroutine.
  3198. <P></P>
  3199. <DT><STRONG><A NAME="item_Unrecognized_character_%25s">Unrecognized character %s</A></STRONG><BR>
  3200. <DD>
  3201. (F) The Perl parser has no idea what to do with the specified character
  3202. in your Perl script (or eval).  Perhaps you tried to run a compressed
  3203. script, a binary program, or a directory as a Perl program.
  3204. <P></P>
  3205. <DT><STRONG><A NAME="item_Unrecognized_escape_%5C%5C%25c_passed_through">Unrecognized escape \\%c passed through</A></STRONG><BR>
  3206. <DD>
  3207. (W misc) You used a backslash-character combination which is not recognized
  3208. by Perl.
  3209. <P></P>
  3210. <DT><STRONG><A NAME="item_Unrecognized_signal_name_%22%25s%22">Unrecognized signal name ``%s''</A></STRONG><BR>
  3211. <DD>
  3212. (F) You specified a signal name to the <A HREF="../../lib/Pod/perlfunc.html#item_kill"><CODE>kill()</CODE></A> function that was not recognized.
  3213. Say <CODE>kill -l</CODE> in your shell to see the valid signal names on your system.
  3214. <P></P>
  3215. <DT><STRONG>Unrecognized switch: -%s  (-h will show valid options)</STRONG><BR>
  3216. <DD>
  3217. (F) You specified an illegal option to Perl.  Don't do that.
  3218. (If you think you didn't do that, check the #! line to see if it's
  3219. supplying the bad switch on your behalf.)
  3220. <P></P>
  3221. <DT><STRONG><A NAME="item_Unsuccessful_%25s_on_filename_containing_newline">Unsuccessful %s on filename containing newline</A></STRONG><BR>
  3222. <DD>
  3223. (W newline) A file operation was attempted on a filename, and that operation
  3224. failed, PROBABLY because the filename contained a newline, PROBABLY
  3225. because you forgot to <A HREF="../../lib/Pod/perlfunc.html#item_chop"><CODE>chop()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_chomp"><CODE>chomp()</CODE></A> it off.  See <A HREF="../../lib/Pod/perlfunc.html#chomp">chomp in the perlfunc manpage</A>.
  3226. <P></P>
  3227. <DT><STRONG><A NAME="item_Unsupported_directory_function_%22%25s%22_called">Unsupported directory function ``%s'' called</A></STRONG><BR>
  3228. <DD>
  3229. (F) Your machine doesn't support <A HREF="../../lib/Pod/perlfunc.html#item_opendir"><CODE>opendir()</CODE></A> and readdir().
  3230. <P></P>
  3231. <DT><STRONG><A NAME="item_Unsupported_function_fork">Unsupported function fork</A></STRONG><BR>
  3232. <DD>
  3233. (F) Your version of executable does not support forking.
  3234. <P>Note that under some systems, like OS/2, there may be different flavors of
  3235. Perl executables, some of which may support fork, some not. Try changing
  3236. the name you call Perl by to <CODE>perl_</CODE>, <CODE>perl__</CODE>, and so on.</P>
  3237. <P></P>
  3238. <DT><STRONG><A NAME="item_Unsupported_function_%25s">Unsupported function %s</A></STRONG><BR>
  3239. <DD>
  3240. (F) This machine doesn't implement the indicated function, apparently.
  3241. At least, Configure doesn't think so.
  3242. <P></P>
  3243. <DT><STRONG><A NAME="item_Unsupported_socket_function_%22%25s%22_called">Unsupported socket function ``%s'' called</A></STRONG><BR>
  3244. <DD>
  3245. (F) Your machine doesn't support the Berkeley socket mechanism, or at
  3246. least that's what Configure thought.
  3247. <P></P>
  3248. <DT><STRONG><A NAME="item_Unterminated_%3C%3E_operator">Unterminated <> operator</A></STRONG><BR>
  3249. <DD>
  3250. (F) The lexer saw a left angle bracket in a place where it was expecting
  3251. a term, so it's looking for the corresponding right angle bracket, and not
  3252. finding it.  Chances are you left some needed parentheses out earlier in
  3253. the line, and you really meant a ``less than''.
  3254. <P></P>
  3255. <DT><STRONG><A NAME="item_Unterminated_attribute_parameter_in_attribute_list">Unterminated attribute parameter in attribute list</A></STRONG><BR>
  3256. <DD>
  3257. (F) The lexer saw an opening (left) parenthesis character while parsing an
  3258. attribute list, but the matching closing (right) parenthesis
  3259. character was not found.  You may need to add (or remove) a backslash
  3260. character to get your parentheses to balance.  See <A HREF="../../lib/attributes.html">the attributes manpage</A>.
  3261. <P></P>
  3262. <DT><STRONG><A NAME="item_Unterminated_attribute_list">Unterminated attribute list</A></STRONG><BR>
  3263. <DD>
  3264. (F) The lexer found something other than a simple identifier at the start
  3265. of an attribute, and it wasn't a semicolon or the start of a
  3266. block.  Perhaps you terminated the parameter list of the previous attribute
  3267. too soon.  See <A HREF="../../lib/attributes.html">the attributes manpage</A>.
  3268. <P></P>
  3269. <DT><STRONG><A NAME="item_Use_of_%24%23_is_deprecated">Use of $# is deprecated</A></STRONG><BR>
  3270. <DD>
  3271. (D deprecated) This was an ill-advised attempt to emulate a poorly defined <STRONG>awk</STRONG> feature.
  3272. Use an explicit <A HREF="#item_printf"><CODE>printf()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_sprintf"><CODE>sprintf()</CODE></A> instead.
  3273. <P></P>
  3274. <DT><STRONG><A NAME="item_Use_of_%24%2A_is_deprecated">Use of $* is deprecated</A></STRONG><BR>
  3275. <DD>
  3276. (D deprecated) This variable magically turned on multi-line pattern matching, both for
  3277. you and for any luckless subroutine that you happen to call.  You should
  3278. use the new <CODE>//m</CODE> and <CODE>//s</CODE> modifiers now to do that without the dangerous
  3279. action-at-a-distance effects of <CODE>$*</CODE>.
  3280. <P></P>
  3281. <DT><STRONG><A NAME="item_Use_of_%25s_in_printf_format_not_supported">Use of %s in printf format not supported</A></STRONG><BR>
  3282. <DD>
  3283. (F) You attempted to use a feature of printf that is accessible from
  3284. only C.  This usually means there's a better way to do it in Perl.
  3285. <P></P>
  3286. <DT><STRONG><A NAME="item_Use_of_bare_%3C%3C_to_mean_%3C%3C%22%22_is_depreca">Use of bare << to mean <<``'' is deprecated</A></STRONG><BR>
  3287. <DD>
  3288. (D deprecated) You are now encouraged to use the explicitly quoted form if you
  3289. wish to use an empty line as the terminator of the here-document.
  3290. <P></P>
  3291. <DT><STRONG><A NAME="item_Use_of_implicit_split_to_%40__is_deprecated">Use of implicit split to @_ is deprecated</A></STRONG><BR>
  3292. <DD>
  3293. (D deprecated) It makes a lot of work for the compiler when you clobber a
  3294. subroutine's argument list, so it's better if you assign the results of
  3295. a <A HREF="../../lib/Pod/perlfunc.html#item_split"><CODE>split()</CODE></A> explicitly to an array (or list).
  3296. <P></P>
  3297. <DT><STRONG>Use of inherited AUTOLOAD for non-method %s() is deprecated</STRONG><BR>
  3298. <DD>
  3299. (D deprecated) As an (ahem) accidental feature, <CODE>AUTOLOAD</CODE> subroutines are
  3300. looked up as methods (using the <CODE>@ISA</CODE> hierarchy) even when the subroutines
  3301. to be autoloaded were called as plain functions (e.g.  <CODE>Foo::bar()</CODE>),
  3302. not as methods (e.g. <CODE>Foo->bar()</CODE> or <CODE>$obj->bar()</CODE>).
  3303. <P>This bug will be rectified in Perl 5.005, which will use method lookup
  3304. only for methods' <CODE>AUTOLOAD</CODE>s.  However, there is a significant base
  3305. of existing code that may be using the old behavior.  So, as an
  3306. interim step, Perl 5.004 issues an optional warning when non-methods
  3307. use inherited <CODE>AUTOLOAD</CODE>s.</P>
  3308. <P>The simple rule is:  Inheritance will not work when autoloading
  3309. non-methods.  The simple fix for old code is:  In any module that used to
  3310. depend on inheriting <CODE>AUTOLOAD</CODE> for non-methods from a base class named
  3311. <CODE>BaseClass</CODE>, execute <CODE>*AUTOLOAD = \&BaseClass::AUTOLOAD</CODE> during startup.</P>
  3312. <P>In code that currently says <A HREF="#item_qw"><CODE>use AutoLoader; @ISA = qw(AutoLoader);</CODE></A> you
  3313. should remove AutoLoader from @ISA and change <CODE>use AutoLoader;</CODE> to
  3314. <CODE>use AutoLoader 'AUTOLOAD';</CODE>.</P>
  3315. <P></P>
  3316. <DT><STRONG><A NAME="item_Use_of_reserved_word_%22%25s%22_is_deprecated">Use of reserved word ``%s'' is deprecated</A></STRONG><BR>
  3317. <DD>
  3318. (D deprecated) The indicated bareword is a reserved word.  Future versions of perl
  3319. may use it as a keyword, so you're better off either explicitly quoting
  3320. the word in a manner appropriate for its context of use, or using a
  3321. different name altogether.  The warning can be suppressed for subroutine
  3322. names by either adding a <CODE>&</CODE> prefix, or using a package qualifier,
  3323. e.g. <A HREF="../../lib/Pod/perlfunc.html#item_our"><CODE>&our()</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_our"><CODE>Foo::our()</CODE></A>.
  3324. <P></P>
  3325. <DT><STRONG><A NAME="item_Use_of_%25s_is_deprecated">Use of %s is deprecated</A></STRONG><BR>
  3326. <DD>
  3327. (D deprecated) The construct indicated is no longer recommended for use, generally
  3328. because there's a better way to do it, and also because the old way has
  3329. bad side effects.
  3330. <P></P>
  3331. <DT><STRONG><A NAME="item_Use_of_uninitialized_value%25s">Use of uninitialized value%s</A></STRONG><BR>
  3332. <DD>
  3333. (W uninitialized) An undefined value was used as if it were already defined.  It was
  3334. interpreted as a ``'' or a 0, but maybe it was a mistake.  To suppress this
  3335. warning assign a defined value to your variables.
  3336. <P></P>
  3337. <DT><STRONG><A NAME="item_Useless_use_of_%22re%22_pragma">Useless use of ``re'' pragma</A></STRONG><BR>
  3338. <DD>
  3339. (W) You did <CODE>use re;</CODE> without any arguments.   That isn't very useful.
  3340. <P></P>
  3341. <DT><STRONG><A NAME="item_Useless_use_of_%25s_in_void_context">Useless use of %s in void context</A></STRONG><BR>
  3342. <DD>
  3343. (W void) You did something without a side effect in a context that does nothing
  3344. with the return value, such as a statement that doesn't return a value
  3345. from a block, or the left side of a scalar comma operator.  Very often
  3346. this points not to stupidity on your part, but a failure of Perl to parse
  3347. your program the way you thought it would.  For example, you'd get this
  3348. if you mixed up your C precedence with Python precedence and said
  3349. <PRE>
  3350.     $one, $two = 1, 2;</PRE>
  3351. <P>when you meant to say</P>
  3352. <PRE>
  3353.     ($one, $two) = (1, 2);</PRE>
  3354. <P>Another common error is to use ordinary parentheses to construct a list
  3355. reference when you should be using square or curly brackets, for
  3356. example, if you say</P>
  3357. <PRE>
  3358.     $array = (1,2);</PRE>
  3359. <P>when you should have said</P>
  3360. <PRE>
  3361.     $array = [1,2];</PRE>
  3362. <P>The square brackets explicitly turn a list value into a scalar value,
  3363. while parentheses do not.  So when a parenthesized list is evaluated in
  3364. a scalar context, the comma is treated like C's comma operator, which
  3365. throws away the left argument, which is not what you want.  See
  3366. <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A> for more on this.</P>
  3367. <P></P>
  3368. <DT><STRONG><A NAME="item_untie_attempted_while_%25d_inner_references_still_">untie attempted while %d inner references still exist</A></STRONG><BR>
  3369. <DD>
  3370. (W untie) A copy of the object returned from <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie</CODE></A> (or <A HREF="../../lib/Pod/perlfunc.html#item_tied"><CODE>tied</CODE></A>) was still
  3371. valid when <A HREF="../../lib/Pod/perlfunc.html#item_untie"><CODE>untie</CODE></A> was called.
  3372. <P></P>
  3373. <DT><STRONG>Value of %s can be ``0''; test with <CODE>defined()</CODE></STRONG><BR>
  3374. <DD>
  3375. (W misc) In a conditional expression, you used <HANDLE>, <*> (glob), <A HREF="../../lib/Pod/perlfunc.html#item_each"><CODE>each()</CODE></A>,
  3376. or <A HREF="../../lib/Pod/perlfunc.html#item_readdir"><CODE>readdir()</CODE></A> as a boolean value.  Each of these constructs can return a
  3377. value of ``0''; that would make the conditional expression false, which is
  3378. probably not what you intended.  When using these constructs in conditional
  3379. expressions, test their values with the <A HREF="#item_defined"><CODE>defined</CODE></A> operator.
  3380. <P></P>
  3381. <DT><STRONG><A NAME="item_Value_of_CLI_symbol_%22%25s%22_too_long">Value of CLI symbol ``%s'' too long</A></STRONG><BR>
  3382. <DD>
  3383. (W misc) A warning peculiar to VMS.  Perl tried to read the value of an %ENV
  3384. element from a CLI symbol table, and found a resultant string longer
  3385. than 1024 characters.  The return value has been truncated to 1024
  3386. characters.
  3387. <P></P>
  3388. <DT><STRONG><A NAME="item_Variable_%22%25s%22_is_not_imported%25s">Variable ``%s'' is not imported%s</A></STRONG><BR>
  3389. <DD>
  3390. (F) While ``use strict'' in effect, you referred to a global variable
  3391. that you apparently thought was imported from another module, because
  3392. something else of the same name (usually a subroutine) is exported
  3393. by that module.  It usually means you put the wrong funny character
  3394. on the front of your variable.
  3395. <P></P>
  3396. <DT><STRONG><A NAME="item_Variable_%22%25s%22_may_be_unavailable">Variable ``%s'' may be unavailable</A></STRONG><BR>
  3397. <DD>
  3398. (W closure) An inner (nested) <EM>anonymous</EM> subroutine is inside a <EM>named</EM>
  3399. subroutine, and outside that is another subroutine; and the anonymous
  3400. (innermost) subroutine is referencing a lexical variable defined in
  3401. the outermost subroutine.  For example:
  3402. <PRE>
  3403.    sub outermost { my $a; sub middle { sub { $a } } }</PRE>
  3404. <P>If the anonymous subroutine is called or referenced (directly or
  3405. indirectly) from the outermost subroutine, it will share the variable
  3406. as you would expect.  But if the anonymous subroutine is called or
  3407. referenced when the outermost subroutine is not active, it will see
  3408. the value of the shared variable as it was before and during the
  3409. *first* call to the outermost subroutine, which is probably not what
  3410. you want.</P>
  3411. <P>In these circumstances, it is usually best to make the middle
  3412. subroutine anonymous, using the <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>sub {}</CODE></A> syntax.  Perl has specific
  3413. support for shared variables in nested anonymous subroutines; a named
  3414. subroutine in between interferes with this feature.</P>
  3415. <P></P>
  3416. <DT><STRONG><A NAME="item_Variable_%22%25s%22_will_not_stay_shared">Variable ``%s'' will not stay shared</A></STRONG><BR>
  3417. <DD>
  3418. (W closure) An inner (nested) <EM>named</EM> subroutine is referencing a lexical
  3419. variable defined in an outer subroutine.
  3420. <P>When the inner subroutine is called, it will probably see the value of
  3421. the outer subroutine's variable as it was before and during the
  3422. *first* call to the outer subroutine; in this case, after the first
  3423. call to the outer subroutine is complete, the inner and outer
  3424. subroutines will no longer share a common value for the variable.  In
  3425. other words, the variable will no longer be shared.</P>
  3426. <P>Furthermore, if the outer subroutine is anonymous and references a
  3427. lexical variable outside itself, then the outer and inner subroutines
  3428. will <EM>never</EM> share the given variable.</P>
  3429. <P>This problem can usually be solved by making the inner subroutine
  3430. anonymous, using the <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>sub {}</CODE></A> syntax.  When inner anonymous subs that
  3431. reference variables in outer subroutines are called or referenced,
  3432. they are automatically rebound to the current values of such
  3433. variables.</P>
  3434. <P></P>
  3435. <DT><STRONG><A NAME="item_Variable_syntax">Variable syntax</A></STRONG><BR>
  3436. <DD>
  3437. (A) You've accidentally run your script through <STRONG>csh</STRONG> instead
  3438. of Perl.  Check the #! line, or manually feed your script into
  3439. Perl yourself.
  3440. <P></P>
  3441. <DT><STRONG><A NAME="item_Version_number_must_be_a_constant_number">Version number must be a constant number</A></STRONG><BR>
  3442. <DD>
  3443. (P) The attempt to translate a <CODE>use Module n.n LIST</CODE> statement into
  3444. its equivalent <CODE>BEGIN</CODE> block found an internal inconsistency with
  3445. the version number.
  3446. <P></P>
  3447. <DT><STRONG><A NAME="item_perl%3A_warning%3A_Setting_locale_failed%2E">perl: warning: Setting locale failed.</A></STRONG><BR>
  3448. <DD>
  3449. (S) The whole warning message will look something like:
  3450. <PRE>
  3451.         perl: warning: Setting locale failed.
  3452.         perl: warning: Please check that your locale settings:
  3453.                 LC_ALL = "En_US",
  3454.                 LANG = (unset)
  3455.             are supported and installed on your system.
  3456.         perl: warning: Falling back to the standard locale ("C").</PRE>
  3457. <P>Exactly what were the failed locale settings varies.  In the above the
  3458. settings were that the LC_ALL was ``En_US'' and the LANG had no value.
  3459. This error means that Perl detected that you and/or your system
  3460. administrator have set up the so-called variable system but Perl could
  3461. not use those settings.  This was not dead serious, fortunately: there
  3462. is a ``default locale'' called ``C'' that Perl can and will use, the
  3463. script will be run.  Before you really fix the problem, however, you
  3464. will get the same error message each time you run Perl.  How to really
  3465. fix the problem can be found in <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A> section <STRONG>LOCALE PROBLEMS</STRONG>.</P>
  3466. <P></P>
  3467. <DT><STRONG><A NAME="item_Warning%3A_something%27s_wrong">Warning: something's wrong</A></STRONG><BR>
  3468. <DD>
  3469. (W) You passed <A HREF="../../lib/Pod/perlfunc.html#item_warn"><CODE>warn()</CODE></A> an empty string (the equivalent of <CODE>warn ""</CODE>) or
  3470. you called it with no args and <CODE>$_</CODE> was empty.
  3471. <P></P>
  3472. <DT><STRONG><A NAME="item_Warning%3A_unable_to_close_filehandle_%25s_properl">Warning: unable to close filehandle %s properly</A></STRONG><BR>
  3473. <DD>
  3474. (S) The implicit <A HREF="../../lib/Pod/perlfunc.html#item_close"><CODE>close()</CODE></A> done by an <A HREF="#item_open"><CODE>open()</CODE></A> got an error indication on the
  3475. close().  This usually indicates your file system ran out of disk space.
  3476. <P></P>
  3477. <DT><STRONG><A NAME="item_Warning%3A_Use_of_%22%25s%22_without_parentheses_i">Warning: Use of ``%s'' without parentheses is ambiguous</A></STRONG><BR>
  3478. <DD>
  3479. (S ambiguous) You wrote a unary operator followed by something that looks like a
  3480. binary operator that could also have been interpreted as a term or
  3481. unary operator.  For instance, if you know that the rand function
  3482. has a default argument of 1.0, and you write
  3483. <PRE>
  3484.     rand + 5;</PRE>
  3485. <P>you may THINK you wrote the same thing as</P>
  3486. <PRE>
  3487.     rand() + 5;</PRE>
  3488. <P>but in actual fact, you got</P>
  3489. <PRE>
  3490.     rand(+5);</PRE>
  3491. <P>So put in parentheses to say what you really mean.</P>
  3492. <P></P>
  3493. <DT><STRONG><A NAME="item_write"><CODE>write()</CODE> on closed filehandle %s</A></STRONG><BR>
  3494. <DD>
  3495. (W closed) The filehandle you're writing to got itself closed sometime before now.
  3496. Check your logic flow.
  3497. <P></P>
  3498. <DT><STRONG><A NAME="item_X_outside_of_string">X outside of string</A></STRONG><BR>
  3499. <DD>
  3500. (F) You had a pack template that specified a relative position before
  3501. the beginning of the string being unpacked.  See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  3502. <P></P>
  3503. <DT><STRONG><A NAME="item_x_outside_of_string">x outside of string</A></STRONG><BR>
  3504. <DD>
  3505. (F) You had a pack template that specified a relative position after
  3506. the end of the string being unpacked.  See <A HREF="../../lib/Pod/perlfunc.html#pack">pack in the perlfunc manpage</A>.
  3507. <P></P>
  3508. <DT><STRONG><A NAME="item_Xsub_%22%25s%22_called_in_sort">Xsub ``%s'' called in sort</A></STRONG><BR>
  3509. <DD>
  3510. (F) The use of an external subroutine as a sort comparison is not yet supported.
  3511. <P></P>
  3512. <DT><STRONG><A NAME="item_Xsub_called_in_sort">Xsub called in sort</A></STRONG><BR>
  3513. <DD>
  3514. (F) The use of an external subroutine as a sort comparison is not yet supported.
  3515. <P></P>
  3516. <DT><STRONG><A NAME="item_You_can%27t_use_%2Dl_on_a_filehandle">You can't use <CODE>-l</CODE> on a filehandle</A></STRONG><BR>
  3517. <DD>
  3518. (F) A filehandle represents an opened file, and when you opened the file it
  3519. already went past any symlink you are presumably trying to look for.
  3520. Use a filename instead.
  3521. <P></P>
  3522. <DT><STRONG><A NAME="item_YOU_HAVEN%27T_DISABLED_SET%2DID_SCRIPTS_IN_THE_KER">YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!</A></STRONG><BR>
  3523. <DD>
  3524. (F) And you probably never will, because you probably don't have the
  3525. sources to your kernel, and your vendor probably doesn't give a rip
  3526. about what you want.  Your best bet is to use the wrapsuid script in
  3527. the eg directory to put a setuid C wrapper around your script.
  3528. <P></P>
  3529. <DT><STRONG><A NAME="item_You_need_to_quote_%22%25s%22">You need to quote ``%s''</A></STRONG><BR>
  3530. <DD>
  3531. (W syntax) You assigned a bareword as a signal handler name.  Unfortunately, you
  3532. already have a subroutine of that name declared, which means that Perl 5
  3533. will try to call the subroutine when the assignment is executed, which is
  3534. probably not what you want.  (If it IS what you want, put an & in front.)
  3535. <P></P>
  3536. <DT><STRONG><A NAME="item_cetsockopt">%cetsockopt() on closed socket %s</A></STRONG><BR>
  3537. <DD>
  3538. (W closed) You tried to get or set a socket option on a closed socket.
  3539. Did you forget to check the return value of your <A HREF="../../lib/Pod/perlfunc.html#item_socket"><CODE>socket()</CODE></A> call?
  3540. See <A HREF="../../lib/Pod/perlfunc.html#getsockopt">getsockopt in the perlfunc manpage</A> and <A HREF="../../lib/Pod/perlfunc.html#setsockopt">setsockopt in the perlfunc manpage</A>.
  3541. <P></P>
  3542. <DT><STRONG><A NAME="item_%5C1_better_written_as_%241">\1 better written as $1</A></STRONG><BR>
  3543. <DD>
  3544. (W syntax) Outside of patterns, backreferences live on as variables.  The use
  3545. of backslashes is grandfathered on the right-hand side of a
  3546. substitution, but stylistically it's better to use the variable form
  3547. because other Perl programmers will expect it, and it works better
  3548. if there are more than 9 backreferences.
  3549. <P></P>
  3550. <DT><STRONG><A NAME="item_%27%7C%27_and_%27%3C%27_may_not_both_be_specified_">'|' and '<' may not both be specified on command line</A></STRONG><BR>
  3551. <DD>
  3552. (F) An error peculiar to VMS.  Perl does its own command line redirection, and
  3553. found that STDIN was a pipe, and that you also tried to redirect STDIN using
  3554. '<'.  Only one STDIN stream to a customer, please.
  3555. <P></P>
  3556. <DT><STRONG><A NAME="item_%27%7C%27_and_%27%3E%27_may_not_both_be_specified_">'|' and '>' may not both be specified on command line</A></STRONG><BR>
  3557. <DD>
  3558. (F) An error peculiar to VMS.  Perl does its own command line redirection, and
  3559. thinks you tried to redirect stdout both to a file and into a pipe to another
  3560. command.  You need to choose one or the other, though nothing's stopping you
  3561. from piping into a program or Perl script which 'splits' output into two
  3562. streams, such as
  3563. <PRE>
  3564.     open(OUT,">$ARGV[0]") or die "Can't write to $ARGV[0]: $!";
  3565.     while (<STDIN>) {
  3566.         print;
  3567.         print OUT;
  3568.     }
  3569.     close OUT;</PRE>
  3570. <P></P>
  3571. <DT><STRONG><A NAME="item_Got_an_error_from_DosAllocMem">Got an error from DosAllocMem</A></STRONG><BR>
  3572. <DD>
  3573. (P) An error peculiar to OS/2.  Most probably you're using an obsolete
  3574. version of Perl, and this should not happen anyway.
  3575. <P></P>
  3576. <DT><STRONG><A NAME="item_Malformed_PERLLIB_PREFIX">Malformed PERLLIB_PREFIX</A></STRONG><BR>
  3577. <DD>
  3578. (F) An error peculiar to OS/2.  PERLLIB_PREFIX should be of the form
  3579. <PRE>
  3580.     prefix1;prefix2</PRE>
  3581. <P>or</P>
  3582. <PRE>
  3583.     prefix1 prefix2</PRE>
  3584. <P>with nonempty prefix1 and prefix2.  If <CODE>prefix1</CODE> is indeed a prefix
  3585. of a builtin library search path, prefix2 is substituted.  The error
  3586. may appear if components are not found, or are too long.  See
  3587. ``PERLLIB_PREFIX'' in <EM>README.os2</EM>.</P>
  3588. <P></P>
  3589. <DT><STRONG><A NAME="item_PERL_SH_DIR_too_long">PERL_SH_DIR too long</A></STRONG><BR>
  3590. <DD>
  3591. (F) An error peculiar to OS/2. PERL_SH_DIR is the directory to find the
  3592. <CODE>sh</CODE>-shell in.  See ``PERL_SH_DIR'' in <EM>README.os2</EM>.
  3593. <P></P>
  3594. <DT><STRONG><A NAME="item_Process_terminated_by_SIG%25s">Process terminated by SIG%s</A></STRONG><BR>
  3595. <DD>
  3596. (W) This is a standard message issued by OS/2 applications, while *nix
  3597. applications die in silence.  It is considered a feature of the OS/2
  3598. port.  One can easily disable this by appropriate sighandlers, see
  3599. <A HREF="../../lib/Pod/perlipc.html#signals">Signals in the perlipc manpage</A>.  See also ``Process terminated by SIGTERM/SIGINT''
  3600. in <EM>README.os2</EM>.
  3601. <P></P></DL>
  3602. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  3603. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  3604. <STRONG><P CLASS=block> perldiag - various Perl diagnostics</P></STRONG>
  3605. </TD></TR>
  3606. </TABLE>
  3607.  
  3608. </BODY>
  3609.  
  3610. </HTML>
  3611.