fix a silly parse snafu

This commit is contained in:
Bill Currie 2002-04-26 21:49:35 +00:00
parent aa006ecf64
commit 1f468e2508

View file

@ -330,8 +330,8 @@ def_name
;
opt_comma_elipsis
: /* empty */ { $$ = 0 }
| ',' ELIPSIS { $$ = 1 }
: /* empty */ { $$ = 0; }
| ',' ELIPSIS { $$ = 1; }
;
param_list