]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - lexer.h
Merge branch 'master' into blub/bc3
[xonotic/gmqcc.git] / lexer.h
diff --git a/lexer.h b/lexer.h
index c23f944baf5fee23cf7da5ecdd5dee964956441d..ae8812b261c5be6e68252a78704e2e32438b59c7 100644 (file)
--- a/lexer.h
+++ b/lexer.h
@@ -183,6 +183,8 @@ static const oper_info operators[] = {
     { "&=",  2, opid2('&','='),     ASSOC_RIGHT, 2,  0 },
     { "^=",  2, opid2('^','='),     ASSOC_RIGHT, 2,  0 },
     { "|=",  2, opid2('|','='),     ASSOC_RIGHT, 2,  0 },
+
+    { ",",   2, opid1(','),         ASSOC_LEFT,  1,  0 }
 };
 static const size_t operator_count = (sizeof(operators) / sizeof(operators[0]));