From 8bf666fc010d41c396dd12a4268e3f4477c6ed55 Mon Sep 17 00:00:00 2001 From: Christophe Alexandre Date: Mon, 9 Sep 2002 08:13:19 +0000 Subject: [PATCH] strang bug ... missing ; looks like bison was adding it ... --- alliance/src/exp/src/expy.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alliance/src/exp/src/expy.y b/alliance/src/exp/src/expy.y index 3b3c24b7..496fee52 100644 --- a/alliance/src/exp/src/expy.y +++ b/alliance/src/exp/src/expy.y @@ -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;}