X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftemporary.c;h=0edb37f5ff772a3a7f48ff8b5147755e6b1933f8;hb=ed7bce25787929340a3f264f00dde7c979e571a9;hp=d82461d1e97626f3d04a7d68922f85e123be4134;hpb=ca1feaeed4961242699d0b7ba61def0c58515ddd;p=pspp diff --git a/src/temporary.c b/src/temporary.c index d82461d1e9..0edb37f5ff 100644 --- a/src/temporary.c +++ b/src/temporary.c @@ -18,11 +18,12 @@ 02111-1307, USA. */ #include -#include +#include "error.h" #include #include #include "alloc.h" #include "command.h" +#include "dictionary.h" #include "do-ifP.h" #include "error.h" #include "hash.h" @@ -31,8 +32,6 @@ #include "value-labels.h" #include "var.h" -#include "debug-print.h" - int temporary; struct dictionary *temp_dict; int temp_trns; @@ -41,8 +40,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 +59,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 (); }