home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 July / AMIGA_1996_7.BIN / ausgabe_7_96 / pd-programmierung / perl5_002bin.lha / man / catp / perldiag.0 < prev    next >
Text File  |  1996-03-02  |  114KB  |  2,905 lines

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