]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
reclassify_token should only deal with tokens < TOKEN_START... should fix #113
authorWolfgang Bumiller <wry.git@bumiller.com>
Sun, 16 Jun 2013 07:52:49 +0000 (09:52 +0200)
committerWolfgang Bumiller <wry.git@bumiller.com>
Sun, 16 Jun 2013 07:53:11 +0000 (09:53 +0200)
parser.c

index c0a7f3bb6593d4363d8937bbf5354ed5dddbf010..71242ac79a81850d57209a2f7234323e478d390f 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -1810,6 +1810,8 @@ static bool parser_close_paren(parser_t *parser, shunt *sy)
 static void parser_reclassify_token(parser_t *parser)
 {
     size_t i;
+    if (parser->tok >= TOKEN_START)
+        return;
     for (i = 0; i < operator_count; ++i) {
         if (!strcmp(parser_tokval(parser), operators[i].op)) {
             parser->tok = TOKEN_OPERATOR;