Changed DFM from open-at-first-access to explicit-open. Before,
[pspp-builds.git] / src / sel-if.c
index f686a9ddf57ed9180f815a1965daa17ead0c909b..330ae4371af1e0498fc4cc90d4d107144789a8e1 100644 (file)
@@ -43,9 +43,6 @@ cmd_select_if (void)
   struct expression *e;
   struct select_if_trns *t;
 
-  lex_match_id ("SELECT");
-  lex_match_id ("IF");
-
   e = expr_parse (PXP_BOOLEAN);
   if (!e)
     return CMD_FAILURE;
@@ -86,8 +83,6 @@ select_if_free (struct trns_header * t)
 int
 cmd_filter (void)
 {
-  lex_match_id ("FILTER");
-
   if (lex_match_id ("OFF"))
     dict_set_filter (default_dict, NULL);
   else
@@ -125,9 +120,6 @@ cmd_process_if (void)
 {
   struct expression *e;
 
-  lex_match_id ("PROCESS");
-  lex_match_id ("IF");
-
   e = expr_parse (PXP_BOOLEAN);
   if (!e)
     return CMD_FAILURE;