X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Ftemporary.c;h=f277152e8f00beb6159a8d8605eecf7dbcc6848b;hb=1f8dd363d6c20d07fcca14cb948018465fa5ed8b;hp=d82461d1e97626f3d04a7d68922f85e123be4134;hpb=ca1feaeed4961242699d0b7ba61def0c58515ddd;p=pspp-builds.git diff --git a/src/temporary.c b/src/temporary.c index d82461d1..f277152e 100644 --- a/src/temporary.c +++ b/src/temporary.c @@ -14,15 +14,16 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, 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,7 +32,8 @@ #include "value-labels.h" #include "var.h" -#include "debug-print.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) int temporary; struct dictionary *temp_dict; @@ -41,8 +43,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 +62,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 (); }