From: Father Chrysostomos Date: Sat, 16 Nov 2013 05:40:45 +0000 (-0800) Subject: Unwrap a perldiag entry for better splain output X-Git-Tag: v5.19.6~46 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/bfe1187367fb54e8ac3a13703b06f6119d6bc035 Unwrap a perldiag entry for better splain output Before: $ ./perl -Ilib -Mdiagnostics -e 'warn "Missing '\'']'\'' in prototype for %s : %s"' Missing ']' in prototype for %s : %s at -e line 1 (#1) (W illegalproto) A grouping was started with [ but never closed with ]. After: $ ./perl -Ilib -Mdiagnostics -e 'warn "Missing '\'']'\'' in prototype for %s : %s"' Missing ']' in prototype for %s : %s at -e line 1 (#1) (W illegalproto) A grouping was started with [ but never closed with ]. --- diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 614b632..bdd3f82 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -2993,8 +2993,7 @@ character name. =item Missing ']' in prototype for %s : %s -(W illegalproto) A grouping was started with C<[> but never closed with -C<]>. +(W illegalproto) A grouping was started with C<[> but never closed with C<]>. =item Missing name in "%s sub"