Indentation

This commit is contained in:
Dale Weiler 2012-04-14 02:51:52 -04:00
parent b9050b6637
commit 76a6ad2d96

View file

@ -323,8 +323,9 @@ int parse_tree(struct lex_file *file) {
if (token == '.') { \
compile_calc_d = 1; \
} \
if (!isdigit(token) && !compile_calc_d && token != '+' && token != '-') \
if (!isdigit(token) && !compile_calc_d && token != '+' && token != '-') { \
error(ERROR_PARSE,"%s:%d Invalid constant initializer element %c for vector, must be numeric\n", file->name, file->line, NAME); \
} \
if (token == '+') { \
compile_calc_s = '+'; \
} \