From: Akim Demaille Date: Fri, 25 Jan 2013 13:57:42 +0000 (+0100) Subject: c: minor simplification in the debug code X-Git-Tag: v2.7.90~159 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/d9fa1b7c4f2379ec16e9bd6b51bc49157066e4db c: minor simplification in the debug code * data/c.m4 (yy_symbol_print): Minor factoring. --- diff --git a/data/c.m4 b/data/c.m4 index 67963635..ba62b725 100644 --- a/data/c.m4 +++ b/data/c.m4 @@ -480,10 +480,8 @@ m4_if(b4_skeleton, ["yacc.c"], b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl m4_ifset([b4_parse_param], [, b4_parse_param]))[ { - if (yytype < YYNTOKENS) - YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); - else - YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); + YYFPRINTF (yyoutput, "%s %s (", + yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]); ]b4_locations_if([ YY_LOCATION_PRINT (yyoutput, *yylocationp); YYFPRINTF (yyoutput, ": ");