On OS X, I verified that the problem existed in Perl 5.8.0 and 5.8.1, and was fixed in 5.8.2.
Here are the relevant parts of the 5.8.2 changelog, and the P5P messages:

http://www.nntp.perl.org/group/perl.perl5.porters/2003/10/msg84468.html

From: Slaven Rezic
Date: October 31, 2003 04:24
Subject: [PATCH] Off-by-one error in regcomp.c
In regexp error messages, file and line are not printed due to
an off-by-one error in regcomp.c. This patch fixes the problem
--snip--
--- regcomp.c.orig 2003-10-31 13:07:52.000000000 +0100 +++ regcomp.c 2003-10-31 13:08:07.000000000 +0100 @@ -5045,7 +5045,7 @@ S_re_croak2(pTHX_ const char* pat1,const if (l1 > 512) l1 = 512; Copy(message, buf, l1 , char); - buf[l1] = '\0'; /* Overwrite \n */ + buf[l1-1] = '\0'; /* Overwrite \n */ Perl_croak(aTHX_ "%s", buf); }
--snip--
http://www.nntp.perl.org/group/perl.perl5.porters/2003/10/msg84501.html
Thanks, applied as change #21591.
http://search.cpan.org/src/NWCLARK/perl-5.8.2/Changes
[ 21606] By: nicholas on 2003/11/01 14:58:31 Log: Integrate: [ 21591] Subject: [PATCH] Off-by-one error in regcomp.c From: Slaven Rezic <slaven@rezic.de> Date: Fri, 31 Oct 2003 12:16:11 +0000 Message-Id: <1067602571.12768@devpc01.iconmobile.de> [ 21593] Test nit ; goes with change 21591 Branch: maint-5.8/perl !> regcomp.c t/lib/warnings/regcomp t/op/regmesg.t


In reply to Re: Compiler warning without line number by Util
in thread Compiler warning without line number by QM

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.