skeletons: fix incorrect type for translatable tokens

* data/skeletons/glr.c, data/skeletons/lalr1.c, data/skeletons/yacc.c:
Fix confusion between the "translatable" and the "translate" tables.
This commit is contained in:
Akim Demaille
2020-03-28 15:10:02 +01:00
parent 84b1972c96
commit ef8965b5f5
3 changed files with 3 additions and 3 deletions

View File

@@ -674,7 +674,7 @@ yysymbol_name (int yysymbol)
};]m4_ifdef([b4_translatable], [[
/* YYTRANSLATABLE[SYMBOL-NUM] -- Whether YYTNAME[SYMBOL-NUM] is
internationalizable. */
static ]b4_int_type_for([b4_translate])[ yytranslatable[] =
static ]b4_int_type_for([b4_translatable])[ yytranslatable[] =
{
]b4_translatable[
};