diff options
author | Akim Demaille <akim.demaille@gmail.com> | 2020-04-05 15:55:07 +0200 |
---|---|---|
committer | Akim Demaille <akim.demaille@gmail.com> | 2020-04-05 19:14:39 +0200 |
commit | cc68bbf799a9ec6574d99e98326ced5eeffcd846 (patch) | |
tree | 9ef9c5bf31e5b7c53861226d00ff85d3dcc6834c /src/output.c | |
parent | f0bb82ae9e847f6dc70ff39fe91faf81a76f0cb8 (diff) | |
download | bison-cc68bbf799a9ec6574d99e98326ced5eeffcd846.tar.gz |
bison: use consistently "token kind", not "token type"
* src/output.c, src/reader.c, src/scan-gram.l, src/tables.c: here.
Diffstat (limited to 'src/output.c')
-rw-r--r-- | src/output.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/output.c b/src/output.c index d0d5c1a2..451d92ee 100644 --- a/src/output.c +++ b/src/output.c @@ -596,9 +596,7 @@ prepare_symbol_definitions (void) static void prepare_actions (void) { - /* Figure out the actions for the specified state, indexed by - lookahead token type. */ - + /* Figure out the actions for the specified state. */ muscle_insert_rule_number_table ("defact", yydefact, yydefact[0], 1, nstates); |