]> git.saurik.com Git - bison.git/blobdiff - src/scan-skel.l
doc: specify documentation encoding
[bison.git] / src / scan-skel.l
index f13ee813af5abef503641f65e62d2c4c4ff5fe32..129b8899a5d92117a2381641cc95aeb18d9e8164 100644 (file)
@@ -244,8 +244,9 @@ at_output (int argc, char *argv[], char **out_namep, int *out_linenop)
       xfclose (yyout);
     }
   *out_namep = xstrdup (argv[1]);
-  output_file_name_check (out_namep);
-  yyout = xfopen (*out_namep, "w");
+  output_file_name_check (out_namep, true);
+  /* If there were errors, do not generate the output.  */
+  yyout = xfopen (complaint_status ? "/dev/null" : *out_namep, "w");
   *out_linenop = 1;
 }