compile_atom(): Neal's last checkin removing the setting of i broke

the build, so I'm restoring it.  I'm not sure what Neal's intent was,
since the line following the one he removed was "REQN(i, 1)" so i is
obviously used. ;)
This commit is contained in:
Barry Warsaw 2003-02-28 15:27:40 +00:00
parent d5532affd8
commit edaa071eb4
1 changed files with 3 additions and 0 deletions

View File

@ -283,7 +283,10 @@ compile_item(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
static void
compile_atom(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
{
int i;
REQ(n, ATOM);
i = n->n_nchildren;
REQN(i, 1);
n = n->n_child;
if (n->n_type == LPAR) {