diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-11-17 06:10:40 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-11-17 13:08:53 -0800 |
commit | 4407f1b81529944846e9211adf563fc23fdc2f19 (patch) | |
tree | e988a2601ee61f8efbb7f437297d8e3f62ca48fb /toke.c | |
parent | 32a77fbe22419270b0c12791d3504011ad7f15b6 (diff) | |
download | perl-4407f1b81529944846e9211adf563fc23fdc2f19.tar.gz |
Remove extraneous dot from ‘Missing right brace...’
$ ./perl -Ilib -e '/\N{/'
Missing right brace on \N{} or unescaped left brace after \N. at -e line 1, within pattern
Execution of -e aborted due to compilation errors.
That dot before ‘at -e’ is confusing.
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3567,7 +3567,7 @@ S_scan_const(pTHX_ char *start) if (! PL_lex_inpat) { yyerror("Missing right brace on \\N{}"); } else { - yyerror("Missing right brace on \\N{} or unescaped left brace after \\N."); + yyerror("Missing right brace on \\N{} or unescaped left brace after \\N"); } continue; } |