]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - lex.c
More parse tree stuff
[xonotic/gmqcc.git] / lex.c
diff --git a/lex.c b/lex.c
index 6c381c9f3cfef5aa27a7829b31f6a0ab8078a74f..01b2ec73b0369398bf4fb625bbba16fdf89df5a1 100644 (file)
--- a/lex.c
+++ b/lex.c
@@ -295,7 +295,8 @@ int lex_token(struct lex_file *file) {
                        for (it = 0; it < sizeof(lex_keywords)/sizeof(*lex_keywords); it++)
                                if (!strncmp(typedef_find(file->lastok)->name, lex_keywords[it], sizeof(lex_keywords[it])))
                                        return it;
-                               
+               
+                       
                return LEX_IDENT;
        }
        return ch;