Changed DFM from open-at-first-access to explicit-open. Before,
[pspp-builds.git] / src / formats.c
index 9198b0ad35ce7dbdb0843d364361098cae921f64..36c019c01d07d50f15c7019a9a007718c0f4260c 100644 (file)
@@ -45,21 +45,18 @@ static int internal_cmd_formats (int);
 int
 cmd_print_formats (void)
 {
-  lex_match_id ("FORMATS");
   return internal_cmd_formats (FORMATS_PRINT);
 }
 
 int
 cmd_write_formats (void)
 {
-  lex_match_id ("FORMATS");
   return internal_cmd_formats (FORMATS_WRITE);
 }
 
 int
 cmd_formats (void)
 {
-  lex_match_id ("FORMATS");
   return internal_cmd_formats (FORMATS_PRINT | FORMATS_WRITE);
 }