Subtiel foutje met haakjes tellen, twee regels moeten omgedraaid worden.

This commit is contained in:
kaashoek 1988-05-29 13:53:57 +00:00
parent a5b6ef2a18
commit 953ac2b514

View file

@ -37,8 +37,8 @@ int special, n_haakjes;
{identifier} return( IDENTIFIER);
"(" { BEGIN CON; n_haakjes = 1; yymore();}
<CON>[^()]*"(" { n_haakjes++; yymore();}
"(" { BEGIN CON; n_haakjes = 1; yymore();}
<CON>[^()]*")" { if ( n_haakjes == 1) {
BEGIN 0;
return( CONDITION);