fix(lexer): POKEDALLARS

This commit is contained in:
Matteo Flebus 2026-01-22 12:59:04 +01:00
parent 687f38523b
commit 609c1667af
2 changed files with 1 additions and 4 deletions

View file

@ -19,7 +19,7 @@ static bool is_special_char(char c)
if (c == EOF)
return true;
char special_chars[] = "\n'\"`;#|&\\$(){}<>*";
char special_chars[] = "\n'\"`;#|&\\(){}<>*";
return strchr(special_chars, c) != NULL;
}