From: Audrey Tang Date: Thu, 2 Aug 2001 04:48:02 +0000 (+0800) Subject: [ID 20010801.039] perlre.pod message typo X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6bab786b4dc26323c40cdd19dc27ad4499214f4e;p=p5sagit%2Fp5-mst-13.2.git [ID 20010801.039] perlre.pod message typo Message-Id: <200108012048.f71Km2r79890@geb.elixus.org> p4raw-id: //depot/perl@11540 --- diff --git a/pod/perlre.pod b/pod/perlre.pod index 25beb24..874fed4 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -683,7 +683,7 @@ this yourself would be a productive exercise), but finishes in a fourth the time when used on a similar string with 1000000 Cs. Be aware, however, that this pattern currently triggers a warning message under the C pragma or B<-w> switch saying it -C<"matches the null string many times">): +C<"matches null string many times in regex">. On simple groups, such as the pattern C<< (?> [^()]+ ) >>, a comparable effect may be achieved by negative look-ahead, as in C<[^()]+ (?! [^()] )>.