[mod.sources] Small bug in ANSI C Yacc grammar

sources-request@genrad.UUCP (05/15/85)

From: Arnold Robbins <gatech!arnold>

There was a small (but fatal) problem in the YACC grammar I posted.  On line
201 of gram.y, change the : to a |.  This was my own mistake, when I added
a production that had been missing.  Here is a context diff.

Sorry about that,
Arnold
----------------------------------------------------------------------
*** o.gram.y	Wed May 15 11:41:33 1985
--- gram.y	Wed May 15 11:41:42 1985
***************
*** 199,205
  
  struct_or_union_specifier
  	: struct_or_union identifier '{' struct_declaration_list '}'
! 	: struct_or_union '{' struct_declaration_list '}'
  	| struct_or_union identifier
  	;
  

--- 199,205 -----
  
  struct_or_union_specifier
  	: struct_or_union identifier '{' struct_declaration_list '}'
! 	| struct_or_union '{' struct_declaration_list '}'
  	| struct_or_union identifier
  	;