X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fmeans-parser.c;h=6bbae8938579aea56b23d1e2be216b323b3a8601;hb=96994a54e60e9c95b8bba54c2281acf7059b1203;hp=0c5916a452f141c1cdc4ea08e7707cc2fc8a8b3b;hpb=369c24f1d085a41ec274ebae5fc198fcee567653;p=pspp diff --git a/src/language/stats/means-parser.c b/src/language/stats/means-parser.c index 0c5916a452..6bbae89385 100644 --- a/src/language/stats/means-parser.c +++ b/src/language/stats/means-parser.c @@ -79,7 +79,7 @@ lex_is_variable (struct lexer *lexer, const struct dictionary *dict, tstr = lex_next_tokcstr (lexer, n); - if (NULL == dict_lookup_var (dict, tstr) ) + if (NULL == dict_lookup_var (dict, tstr)) return false; return true; @@ -111,9 +111,9 @@ means_parse (struct lexer *lexer, struct means *means) /* Look ahead to see if there are more tables to be parsed */ more_tables = false; - if ( T_SLASH == lex_next_token (lexer, 0) ) + if (T_SLASH == lex_next_token (lexer, 0)) { - if (lex_is_variable (lexer, means->dict, 1) ) + if (lex_is_variable (lexer, means->dict, 1)) { more_tables = true; lex_match (lexer, T_SLASH);