yacc.c: fix #definition of YYEMPTY
commitc47bb87f9f1285309377adee7bb21263decc503c
authorTodd C. Miller <Todd.Miller@sudo.ws>
Tue, 10 Nov 2020 06:36:11 +0000 (10 07:36 +0100)
committerAkim Demaille <akim.demaille@gmail.com>
Wed, 11 Nov 2020 07:47:21 +0000 (11 08:47 +0100)
treea5e2c03fb181129a6365ff731e23cdb6eb714b29
parent98c35e0025f43838d4c451553a4cf8b345b047f8
yacc.c: fix #definition of YYEMPTY

When generating a C parser, YYEMPTY is present in enum yytokentype but
there is no corresponding #define like there is for the other values.
There is a special case for YYEMPTY in b4_token_enums but no
corresponding case in b4_token_defines.

* data/skeletons/c.m4 (b4_token_defines): Do define YYEMPTY.
NEWS
data/skeletons/c.m4