/* ITEMSETSIZE is the size of the array ITEMSET. */
short *itemset;
-size_t itemsetsize;
+int itemsetsize;
static unsigned *ruleset;
for (j = 0; j <= nrules; j++)
if (BITISSET (rp, j))
- fprintf (stderr, "\t\t%d (%s)\n", j, tags[j]);
+ {
+ short *rhsp;
+ fprintf (stderr, "\t\t%d:", j);
+ for (rhsp = ritem + rule_table[j].rhs; *rhsp > 0; ++rhsp)
+ fprintf (stderr, " %s", tags[*rhsp]);
+ fputc ('\n', stderr);
+ }
}
fprintf (stderr, "\n\n");
}