- Events now always require a label.

This commit is contained in:
ccremers 2005-04-29 13:25:43 +00:00
parent 6f6cb322dc
commit f206d4258f

View File

@ -226,9 +226,8 @@ typeinfoN : /* empty */
}
;
label : /* empty */
{ $$ = NULL; }
| '_' ID
/* Previously, the label could be omitted. It is now required. */
label : '_' ID
{ $$ = $2; }
;