X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fdelete-variables.c;h=ec5d45371551ed5824101337b0e02bd7ef9757da;hb=refs%2Fbuilds%2F20140222030507%2Fpspp;hp=526fa1cd41f5e755ca86d55322670c57facbf521;hpb=81579d9e9f994fb2908f50af41c3eb033d216e58;p=pspp diff --git a/src/language/dictionary/delete-variables.c b/src/language/dictionary/delete-variables.c index 526fa1cd41..ec5d453715 100644 --- a/src/language/dictionary/delete-variables.c +++ b/src/language/dictionary/delete-variables.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006, 2007, 2011 Free Software Foundation, Inc. + Copyright (C) 2006, 2007, 2010, 2011, 2013 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 @@ -19,8 +19,8 @@ #include #include "data/casereader.h" +#include "data/dataset.h" #include "data/dictionary.h" -#include "data/procedure.h" #include "language/command.h" #include "language/lexer/variable-parser.h" #include "libpspp/message.h" @@ -45,11 +45,12 @@ cmd_delete_variables (struct lexer *lexer, struct dataset *ds) if (var_cnt == dict_get_var_cnt (dataset_dict (ds))) { msg (SE, _("DELETE VARIABLES may not be used to delete all variables " - "from the active file dictionary. Use NEW FILE instead.")); + "from the active dataset dictionary. " + "Use NEW FILE instead.")); goto error; } - ok = casereader_destroy (proc_open (ds)); + ok = casereader_destroy (proc_open_filtering (ds, false)); ok = proc_commit (ds) && ok; if (!ok) goto error;