strang bug ... missing ; looks like bison was adding it ...

This commit is contained in:
Christophe Alexandre 2002-09-09 08:13:19 +00:00
parent 3f2392c41a
commit 8bf666fc01
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ exp : IDENT '=' exp { if ((pcond==0) || (cond[pcond]>0.)) {
cond : exp { if (pcond < PCONDMAX)
cond[++pcond] = $1;
else
yyerror ("too much conditions")
yyerror ("too much conditions");
}
;
idents : IDENT { $$ = eltadd (NULL,NULL); $$->VAL.e=$1;}