some fixes and cosmetic changes

This commit is contained in:
ceriel
1987-08-03 09:09:07 +00:00
parent c158bf75de
commit ead1e453d0
6 changed files with 28 additions and 32 deletions

View File

@@ -34,7 +34,6 @@ MkNode(class, left, right, token)
nd->nd_right = right;
nd->nd_token = *token;
nd->nd_class = class;
nd->nd_type = error_type;
return nd;
}
@@ -46,7 +45,6 @@ MkLeaf(class, token)
nd->nd_left = nd->nd_right = 0;
nd->nd_token = *token;
nd->nd_type = error_type;
nd->nd_class = class;
return nd;
}