* sys-file-info.c: (cmd_display) Use compare_var_ptr_names to
[pspp] / src / language / control / temporary.c
index 6cfd48ec981f1a20f8524b041e7368813fcb47a8..45d7342b60a10b299f40ed706213f806de3ab43e 100644 (file)
 
 /* Parses the TEMPORARY command. */
 int
-cmd_temporary (void)
+cmd_temporary (struct dataset *ds)
 {
-  if (!proc_in_temporary_transformations ())
-    proc_start_temporary_transformations ();
+  if (!proc_in_temporary_transformations (ds))
+    proc_start_temporary_transformations (ds);
   else
     msg (SE, _("This command may only appear once between "
                "procedures and procedure-like commands."));