fix a lexer error which parsed !! as one operator

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-25 23:24:39 +01:00
parent 2f5a26a4de
commit b4a5517851

View file

@ -1164,7 +1164,7 @@ int lex_do(lex_file *lex)
lex_tokench(lex, ch);
nextch = lex_getch(lex);
if (nextch == ch || nextch == '=') {
if (nextch == '=' || (nextch == ch && ch != '!')) {
lex_tokench(lex, nextch);
} else if (ch == '-' && nextch == '>') {
lex_tokench(lex, nextch);