From: Father Chrysostomos Date: Sun, 24 Jun 2012 20:42:59 +0000 (-0700) Subject: perldiag: Remove initial %s: from regexp messages X-Git-Tag: upstream/5.20.0~6282 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad19ef225338a36579e4752839bc6b1e60d22531;p=platform%2Fupstream%2Fperl.git perldiag: Remove initial %s: from regexp messages Commit b45f050a81 moved the initial /%s/: and changed it to a final ‘in regex m/%s/’, but some perldiag entries were not updated. --- diff --git a/pod/perldiag.pod b/pod/perldiag.pod index ddcb2e1..920b74c 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1794,13 +1794,13 @@ single form when it must operate on them directly. Either you've passed an invalid file specification to Perl, or you've found a case the conversion routines don't handle. Drat. -=item %s: Eval-group in insecure regular expression +=item Eval-group in insecure regular expression (F) Perl detected tainted data when trying to compile a regular expression that contains the C<(?{ ... })> zero-width assertion, which is unsafe. See L, and L. -=item %s: Eval-group not allowed at runtime, use re 'eval' +=item Eval-group not allowed at runtime, use re 'eval' in regex m/%s/ (F) Perl tried to compile a regular expression containing the C<(?{ ... })> zero-width assertion at run time, as it would when the @@ -1810,7 +1810,7 @@ C pragma or by explicitly building the pattern from an interpolated string at run time and using that in an eval(). See L. -=item %s: Eval-group not allowed, use re 'eval' +=item Eval-group not allowed, use re 'eval' in regex m/%s/ (F) A regular expression contained the C<(?{ ... })> zero-width assertion, but that construct is only allowed when the C