* 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

@@ -1570,8 +1570,6 @@ packsymbols (void)
user_toknums = XCALLOC (short, nsyms + 1);
symbols = XCALLOC (bucket *, nsyms);
sassoc = XCALLOC (short, nsyms);
max_user_token_number = 256;
last_user_token_number = 256;
@@ -1643,7 +1641,6 @@ packsymbols (void)
symbols[bp->value] = bp;
user_toknums[bp->value] = bp->user_token_number;
sassoc[bp->value] = bp->assoc;
}
token_translations_init ();