bug fix: code referred to token attribute of wrong token!
This commit is contained in:
parent
ae0cde301d
commit
a44875cf00
|
@ -117,7 +117,7 @@ def { register string p; }
|
||||||
*/
|
*/
|
||||||
| C_START C_IDENT
|
| C_START C_IDENT
|
||||||
{ p = store(lextoken.t_string); }
|
{ p = store(lextoken.t_string); }
|
||||||
',' C_IDENT ';'
|
',' C_IDENT
|
||||||
/*
|
/*
|
||||||
* A start symbol declaration
|
* A start symbol declaration
|
||||||
*/
|
*/
|
||||||
|
@ -141,6 +141,7 @@ def { register string p; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
';'
|
||||||
| C_LEXICAL C_IDENT
|
| C_LEXICAL C_IDENT
|
||||||
/*
|
/*
|
||||||
* Declaration of a name for the lexical analyser.
|
* Declaration of a name for the lexical analyser.
|
||||||
|
|
Loading…
Reference in a new issue