* src/closure.c, src/conflicts.c, src/derives.c, src/gram.c

* src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
* src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
as rules.
This commit is contained in:
Akim Demaille
2001-12-29 14:20:13 +00:00
parent 1cca533e2e
commit 1a2b5d37e1
13 changed files with 114 additions and 106 deletions

View File

@@ -420,7 +420,7 @@ build_relations (void)
state_t *state = state_table[from_state[i]];
states[0] = state->number;
for (rp = &ritem[rule_table[*rulep].rhs]; *rp >= 0; rp++)
for (rp = &ritem[rules[*rulep].rhs]; *rp >= 0; rp++)
{
shifts *sp = state->shifts;
int j;