Added coefficient-handling routines
[pspp-builds.git] / src / temporary.c
index 293ed30c174ff16b63d9adf3d19937871503e7ef..840e5d2b4e73941b95242b5b1b65c7087dea974a 100644 (file)
@@ -24,7 +24,7 @@
 #include "alloc.h"
 #include "command.h"
 #include "dictionary.h"
-#include "do-ifP.h"
+#include "ctl-stack.h"
 #include "error.h"
 #include "hash.h"
 #include "lexer.h"
 #include "value-labels.h"
 #include "var.h"
 
+#include "gettext.h"
+#define _(msgid) gettext (msgid)
+
 int temporary;
 struct dictionary *temp_dict;
-int temp_trns;
+size_t temp_trns;
 
 /* Parses the TEMPORARY command. */
 int
 cmd_temporary (void)
 {
   /* TEMPORARY is not allowed inside DO IF or LOOP. */
-  if (ctl_stack)
+  if (!ctl_stack_is_empty ())
     {
       msg (SE, _("This command is not valid inside DO IF or LOOP."));
       return CMD_FAILURE;