Remove a suspect ungetc() call in VHDL parser

This ungetc() call don't look legitimate and actually leads to lots
of warnings about ungetc() being called when another character was
already backed up.
This commit is contained in:
Colomban Wendling 2012-09-02 20:28:30 +02:00
parent e469aa27e0
commit c05f1bdd44

View File

@ -190,7 +190,6 @@ static void tagNameList (const vhdlKind kind, int c)
{
readIdentifier (TagName, c);
makeSimpleTag (TagName, VhdlKinds, kind);
vUngetc (c);
}
}