factor.c: added translation hint
[pspp] / src / language / lexer / variable-parser.h
index 798851d1a7e33a434dbc45293109e53f4c2a901e..8a6772d031e3980151904e31a152c69dfee1f09b 100644 (file)
@@ -59,6 +59,8 @@ bool parse_variables_pool (struct lexer *, struct pool *, const struct dictionar
                           struct variable ***, size_t *, int opts);
 bool parse_var_set_vars (struct lexer *, const struct var_set *, struct variable ***, size_t *,
                         int opts);
+
+char *parse_DATA_LIST_var (struct lexer *, const struct dictionary *);
 bool parse_DATA_LIST_vars (struct lexer *, const struct dictionary *,
                            char ***names, size_t *cnt, int opts);
 bool parse_DATA_LIST_vars_pool (struct lexer *, const struct dictionary *,
@@ -122,7 +124,7 @@ parse_const_var_set_vars (struct lexer *l, const struct const_var_set *vs,
 static inline void
 const_var_set_destroy (struct const_var_set *vs)
 {
-  var_set_destroy ( (struct var_set *) vs);
+  var_set_destroy ((struct var_set *) vs);
 }
 
 /* Match a variable.
@@ -134,7 +136,7 @@ lex_match_variable (struct lexer *lexer, const struct dictionary *dict, const st
 struct interaction;
 
 /* Parse an interaction.
-   If not successfull return false.
+   If not successful return false.
    Otherwise, a newly created interaction will be placed in IACT.
    It is the caller's responsibility to destroy this interaction.
  */