GNU standards require "file name" instead of "filename" in
[pspp-builds.git] / src / language / utilities / include.c
index a148d6fac7e401f2ec97a9bc3ada89b15a604620..42614f1bb4426186ef6ed52b629d8efe87b3cdaf 100644 (file)
@@ -37,10 +37,10 @@ cmd_include (void)
   if (lex_match_id ("FILE"))
     lex_match ('=');
 
-  /* Filename can be identifier or string. */
+  /* File name can be identifier or string. */
   if (token != T_ID && token != T_STRING) 
     {
-      lex_error (_("expecting filename")); 
+      lex_error (_("expecting file name")); 
       return CMD_CASCADING_FAILURE;
     }
   getl_include_syntax_file (ds_c_str (&tokstr));