Changed DFM from open-at-first-access to explicit-open. Before,
[pspp-builds.git] / src / loop.c
index 7a31234c4f681629c7f9baf37abafc9618a9c9d1..7f8aa87559cbfacc32029715426623aa45c988c0 100644 (file)
@@ -166,8 +166,6 @@ internal_cmd_loop (void)
   /* Name of indexing variable if applicable. */
   char name[9];
 
-  lex_match_id ("LOOP");
-
   /* Create and initialize transformations to facilitate
      error-handling. */
   two = xmalloc (sizeof *two);
@@ -502,8 +500,6 @@ cmd_break (void)
   /* New transformation. */
   struct break_trns *t;
 
-  lex_match_id ("BREAK");
-
   for (loop = ctl_stack; loop; loop = loop->down)
     if (loop->type == CST_LOOP)
       break;