lexer: Reimplement for better testability and internationalization.
[pspp-builds.git] / src / language / stats / autorecode.c
index 77385783549029af27c4e3ced65ba07c30e03482..fdf3dddc2ea83cec64daff9f394f34c40978b4e6 100644 (file)
@@ -120,7 +120,8 @@ cmd_autorecode (struct lexer *lexer, struct dataset *ds)
   if (!lex_force_match_id (lexer, "INTO"))
     goto error;
   lex_match (lexer, T_EQUALS);
-  if (!parse_DATA_LIST_vars (lexer, &dst_names, &n_dsts, PV_NO_DUPLICATE))
+  if (!parse_DATA_LIST_vars (lexer, dict, &dst_names, &n_dsts,
+                             PV_NO_DUPLICATE))
     goto error;
   if (n_dsts != n_srcs)
     {