From: Wolfgang (Blub) Bumiller Date: Wed, 21 Nov 2012 19:42:48 +0000 (+0100) Subject: question mark must result in TOKEN_OPERATOR X-Git-Tag: 0.1.9~369 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=5ec75a228eb07d5f5a36c6b390b0f8229c9f2065 question mark must result in TOKEN_OPERATOR --- diff --git a/lexer.c b/lexer.c index 5a1f23e..b637af9 100644 --- a/lexer.c +++ b/lexer.c @@ -1022,6 +1022,7 @@ int lex_do(lex_file *lex) case '[': case '(': case ':': + case '?': lex_tokench(lex, ch); lex_endtoken(lex); if (lex->flags.noops)