mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-14 14:53:03 +00:00
* src/gram.h, src/gram.c (nitems): Remove, it is an alias of
nritems. Adjust dependencies.
This commit is contained in:
11
src/gram.c
11
src/gram.c
@@ -27,18 +27,17 @@
|
||||
|
||||
/* comments for these variables are in gram.h */
|
||||
|
||||
int nitems = 0;
|
||||
int nrules = 0;
|
||||
int nsyms = 0;
|
||||
int ntokens = 1;
|
||||
int nvars = 0;
|
||||
|
||||
short *ritem = NULL;
|
||||
int nritems = 0;
|
||||
|
||||
rule_t *rules = NULL;
|
||||
int nrules = 0;
|
||||
|
||||
symbol_t **symbols = NULL;
|
||||
int nsyms = 0;
|
||||
int ntokens = 1;
|
||||
int nvars = 0;
|
||||
|
||||
short *token_translations = NULL;
|
||||
|
||||
int start_symbol = 0;
|
||||
|
||||
Reference in New Issue
Block a user