summaryrefslogtreecommitdiff
path: root/perly.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2015-01-07 11:01:59 -0800
committerFather Chrysostomos <sprout@cpan.org>2015-01-07 11:01:59 -0800
commit37b6dcb80f19834b5344bc8471e34a3e8c025849 (patch)
tree3481566a9d90d16decf5632db9be0da616992414 /perly.c
parentcb3a94c5159f33b62bee09b407d8fc093f8694e2 (diff)
downloadperl-37b6dcb80f19834b5344bc8471e34a3e8c025849.tar.gz
perly.c: Emit nl after ‘Reading a token’
This makes the -DTp output easier to read.
Diffstat (limited to 'perly.c')
-rw-r--r--perly.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perly.c b/perly.c
index f3243d45c7..48f0e8085e 100644
--- a/perly.c
+++ b/perly.c
@@ -318,7 +318,7 @@ Perl_yyparse (pTHX_ int gramtype)
/* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
if (parser->yychar == YYEMPTY) {
- YYDPRINTF ((Perl_debug_log, "Reading a token: "));
+ YYDPRINTF ((Perl_debug_log, "Reading a token:\n"));
parser->yychar = yylex();
}