X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fxforms%2Fselect-if.c;h=e6dc9b4bb0b291c4c21a2f4b5a4a035b3b7e2f30;hb=755ecfd2e8d86bc134fe7202c46fee354ec166d0;hp=e83abcdb4ab67a6cce0de970543c1a7af8ba97b3;hpb=e960014e8e7990f140b3e118b10ab95ff5870723;p=pspp-builds.git diff --git a/src/language/xforms/select-if.c b/src/language/xforms/select-if.c index e83abcdb..e6dc9b4b 100644 --- a/src/language/xforms/select-if.c +++ b/src/language/xforms/select-if.c @@ -18,15 +18,20 @@ 02110-1301, USA. */ #include + #include -#include -#include + #include -#include +#include +#include +#include +#include #include #include +#include +#include +#include #include -#include #include "gettext.h" #define _(msgid) gettext (msgid) @@ -91,6 +96,12 @@ cmd_filter (void) { if (lex_match_id ("OFF")) dict_set_filter (default_dict, NULL); + else if (token == '.') + { + msg (SW, _("Syntax error expecting OFF or BY. " + "Turning off case filtering.")); + dict_set_filter (default_dict, NULL); + } else { struct variable *v; @@ -98,52 +109,22 @@ cmd_filter (void) lex_match (T_BY); v = parse_variable (); if (!v) - return CMD_CASCADING_FAILURE; + return CMD_FAILURE; if (v->type == ALPHA) { msg (SE, _("The filter variable must be numeric.")); - return CMD_CASCADING_FAILURE; + return CMD_FAILURE; } if (dict_class_from_id (v->name) == DC_SCRATCH) { msg (SE, _("The filter variable may not be scratch.")); - return CMD_CASCADING_FAILURE; + return CMD_FAILURE; } dict_set_filter (default_dict, v); } - return CMD_SUCCESS; -} - -/* Expression on PROCESS IF. */ -struct expression *process_if_expr; - -/* Parses the PROCESS IF command. */ -int -cmd_process_if (void) -{ - struct expression *e; - - e = expr_parse (default_dict, EXPR_BOOLEAN); - if (!e) - return CMD_FAILURE; - - if (token != '.') - { - expr_free (e); - lex_error (_("expecting end of command")); - return CMD_FAILURE; - } - - if (process_if_expr) - { - msg (SW, _("Only last instance of this command is in effect.")); - expr_free (process_if_expr); - } - process_if_expr = e; - - return CMD_SUCCESS; + return lex_end_of_command (); }