]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Indentation
authorDale Weiler <killfieldengine@gmail.com>
Sat, 14 Apr 2012 06:46:53 +0000 (02:46 -0400)
committerDale Weiler <killfieldengine@gmail.com>
Sat, 14 Apr 2012 06:46:53 +0000 (02:46 -0400)
parse.c

diff --git a/parse.c b/parse.c
index 0dfe3e9441a5387b932cd6964de22516b26947d4..582b0a2b8e9a45e90530e6da1d0f99e52769ba7b 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -315,7 +315,7 @@ int parse_tree(struct lex_file *file) {
                                                         * complicated mechanics of a vector, and can be extended as well.  This
                                                         * is a rather large macro, and is #undef after it's use below.
                                                         */
-                                               #define PARSE_VEC_ELEMENT(NAME, BIT)                                                                                                                               \
+                                               #define PARSE_VEC_ELEMENT(NAME, BIT)                                                                                                                                   \
                                                    token = lex_token(file);                                                                                                                                           \
                                                    if (token == ' ') {                                                                                                                                                \
                                                        token = lex_token(file);                                                                                                                                       \
@@ -332,14 +332,14 @@ int parse_tree(struct lex_file *file) {
                                                        compile_calc_s = '-';                                                                                                                                          \
                                                    }                                                                                                                                                                  \
                                                    while (isdigit(token) || token == '.' || token == '+' || token == '-') {                                                                                           \
-                                                           *compile_eval++ = token;                                                                                                                                       \
-                                                           token           = lex_token(file);                                                                                                                             \
-                                                           if (token == '.' && compile_calc_d) {                                                                                                                          \
-                                                               error(ERROR_PARSE, "%s:%d Invalid constant initializer element %c for vector, must be numeric.\n", file->name, file->line, NAME);                          \
+                                                       *compile_eval++ = token;                                                                                                                                       \
+                                                       token           = lex_token(file);                                                                                                                             \
+                                                       if (token == '.' && compile_calc_d) {                                                                                                                          \
+                                                           error(ERROR_PARSE, "%s:%d Invalid constant initializer element %c for vector, must be numeric.\n", file->name, file->line, NAME);                          \
                                                            token = lex_token(file);                                                                                                                                   \
                                                            }                                                                                                                                                              \
-                                                           if ((token == '-' || token == '+') && compile_calc_s) {                                                                                                        \
-                                                               error(ERROR_PARSE, "%s:%d Invalid constant initializer sign for vector element %c\n", file->name, file->line, NAME);                                       \
+                                                       if ((token == '-' || token == '+') && compile_calc_s) {                                                                                                        \
+                                                           error(ERROR_PARSE, "%s:%d Invalid constant initializer sign for vector element %c\n", file->name, file->line, NAME);                                       \
                                                            token = lex_token(file);                                                                                                                                   \
                                                        } else if (token == '.' && !compile_calc_d) {                                                                                                                  \
                                                            compile_calc_d = 1;                                                                                                                                        \