Paul Eggert <[EMAIL PROTECTED]> writes:
> In the latest patch, those three gotos confused me. Part of the
> confusion is due to uses like 'if (fflush (fp))' which are of course
> valid but which I find a bit hard to read at first. Also, the
> comment's "contents is" is not quite grammatical, and
In the latest patch, those three gotos confused me. Part of the
confusion is due to uses like 'if (fflush (fp))' which are of course
valid but which I find a bit hard to read at first. Also, the
comment's "contents is" is not quite grammatical, and the comment is a
bit overconfident about getting
Ben Pfaff wrote on 2006-02-27:
> I'm not sure I understand the fwriteerror() interface.
The basic idea is to be able to write:
output_file = fopen (file_name, "w");
if (output_file == NULL)
error (EXIT_FAILURE, errno, _("error while opening \"%s\" for writing"),
file_na