Allow consecutive multiple '_' in VST identifiers (Mvl).

This commit is contained in:
Jean-Paul Chaput 2020-09-30 16:40:46 +02:00
parent 64ad28d03e
commit b1713c8533
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ base_specifier (B|b|O|o|X|x)
\/ { \/ {
return(Slash); return(Slash);
} }
{letter}(_?{letter_or_digit})* { {letter}(_|{letter_or_digit})* {
int itoken; int itoken;
itoken = search (yytext); itoken = search (yytext);