[gnu.utils.bug] problem with parse_union_decl in bison

adam@UUNET.UU.NET (Adam de Boor) (08/31/89)

if one has a multi-line comment inside the union declaration, the line
counter isn't incremented, so the rest of the code has improper
line numbers in the symbol table. The fix is to place lines like

		if (c == '\n')
		  {
		    lineno++;
		    c = getc(finput);
		  }
		else if (c == '*')

in parse_union_decl in the section that reads comments...

a