Whitespace changes only.
[pspp] / src / language / stats / means-parser.c
index 0c5916a452f141c1cdc4ea08e7707cc2fc8a8b3b..6bbae8938579aea56b23d1e2be216b323b3a8601 100644 (file)
@@ -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);