Changed the definition of factors to be self referential.
[pspp-builds.git] / src / temporary.c
index d82461d1e97626f3d04a7d68922f85e123be4134..c04ce764d99b18a99274fe2adfa9503f9f5854b7 100644 (file)
@@ -18,7 +18,7 @@
    02111-1307, USA. */
 
 #include <config.h>
-#include <assert.h>
+#include "error.h"
 #include <stddef.h>
 #include <stdlib.h>
 #include "alloc.h"
@@ -31,8 +31,6 @@
 #include "value-labels.h"
 #include "var.h"
 
-#include "debug-print.h"
-
 int temporary;
 struct dictionary *temp_dict;
 int temp_trns;
@@ -41,8 +39,6 @@ int temp_trns;
 int
 cmd_temporary (void)
 {
-  lex_match_id ("TEMPORARY");
-
   /* TEMPORARY is not allowed inside DO IF or LOOP. */
   if (ctl_stack)
     {
@@ -62,7 +58,6 @@ cmd_temporary (void)
   temporary = 1;
   temp_dict = dict_clone (default_dict);
   temp_trns = n_trns;
-  debug_printf (("TEMPORARY: temp_trns=%d\n", temp_trns));
 
   return lex_end_of_command ();
 }