* aggregate.c: (parse_aggregate_functions) Fix N_NO_VARS format.
[pspp-builds.git] / src / rename-vars.c
index 212d7bdfb78c8a3fe3d9dd13a6ccbe320edb3b8d..0219f28345a0c99d017add9407c8764281686ed0 100644 (file)
 
 #include <config.h>
 #include <stdlib.h>
-#include <assert.h>
+#include "error.h"
 #include "alloc.h"
 #include "command.h"
+#include "dictionary.h"
 #include "error.h"
 #include "hash.h"
 #include "lexer.h"
@@ -42,8 +43,12 @@ cmd_rename_variables (void)
 
   int i;
 
-  lex_match_id ("RENAME");
-  lex_match_id ("VARIABLES");
+  if (temporary != 0)
+    {
+      msg (SE, _("RENAME VARS may not be used after TEMPORARY.  "
+                 "Temporary transformations will be made permanent."));
+      cancel_temporary (); 
+    }
 
   do
     {