]> de.git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - lex.c
Some parsing
[xonotic/gmqcc.git] / lex.c
diff --git a/lex.c b/lex.c
index 9d15301d8d0070da7aec062df4af6e2b5864f83b..5333171ef2e28a63d57cf6bc1ccdd8720bda1d9c 100644 (file)
--- a/lex.c
+++ b/lex.c
@@ -349,6 +349,7 @@ int lex_debug(struct lex_file *file) {
        while ((token = lex_token(file)) != ERROR_LEX && file->length >= 0)
                if (token == LEX_IDENT)
                        printf("%s ", file->lastok);
+       fputc('\n', stdout);
        lex_reset(file);
        return 1;
 }