X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fdelete-variables.c;h=027315b65f09b81c47e6c050962fe67f06caf8ed;hb=2be9bee9da6a2ce27715e58128569594319abfa2;hp=b9cbe70d68a2e34f8dbb6905ca52fe9d5bfa3932;hpb=b09b3485e28fba1b07980fd5a5eb6466486b5c07;p=pspp-builds.git diff --git a/src/language/dictionary/delete-variables.c b/src/language/dictionary/delete-variables.c index b9cbe70d..027315b6 100644 --- a/src/language/dictionary/delete-variables.c +++ b/src/language/dictionary/delete-variables.c @@ -1,31 +1,29 @@ -/* PSPP - computes sample statistics. - Copyright (C) 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . +/* PSPP - a program for statistical analysis. + Copyright (C) 2006, 2007, 2010, 2011 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. 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., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include #include -#include -#include -#include -#include -#include +#include "data/casereader.h" +#include "data/dataset.h" +#include "data/dictionary.h" +#include "language/command.h" +#include "language/lexer/variable-parser.h" +#include "libpspp/message.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -36,6 +34,7 @@ cmd_delete_variables (struct lexer *lexer, struct dataset *ds) { struct variable **vars; size_t var_cnt; + bool ok; if (proc_make_temporary_transformations_permanent (ds)) msg (SE, _("DELETE VARIABLES may not be used after TEMPORARY. " @@ -50,12 +49,14 @@ cmd_delete_variables (struct lexer *lexer, struct dataset *ds) goto error; } - if (!procedure (ds, NULL, NULL)) + ok = casereader_destroy (proc_open (ds)); + ok = proc_commit (ds) && ok; + if (!ok) goto error; - dict_delete_vars (dataset_dict (ds), vars, var_cnt); + free (vars); - + return CMD_SUCCESS; error: