* src/gram.c, src/gram.h (sprec, sassoc): Remove.

Adjust all users to use symbols[i]->prec or ->assoc.
This commit is contained in:
Akim Demaille
2001-12-29 14:19:13 +00:00
parent ad949da96b
commit 5a670b1ed9
5 changed files with 9 additions and 11 deletions

View File

@@ -38,11 +38,9 @@ int nritems;
rule_t *rule_table = NULL;
short *rprec = NULL;
short *rprecsym = NULL;
short *rassoc = NULL;
struct bucket **symbols = NULL;
short *sprec = NULL;
short *rassoc = NULL;
short *sassoc = NULL;
short *token_translations = NULL;
int start_symbol;