The code here was too confusing, this seems more natural.
* src/complain.c (error_message): Move the indentation check and the category
output to complains. Also, no longer take a 'warnings' argument.
(complains): Factor calls to error_message.
Signed-off-by: Akim Demaille <akim@lrde.epita.fr>
error_message (const location *loc, warnings flags, const char *prefix,
const char *message, va_list args)
{
error_message (const location *loc, warnings flags, const char *prefix,
const char *message, va_list args)
{
unsigned pos = 0;
if (loc)
unsigned pos = 0;
if (loc)
+ if (*indent_ptr)
+ prefix = NULL;
if (!*indent_ptr)
*indent_ptr = pos;
else if (*indent_ptr > pos)
if (!*indent_ptr)
*indent_ptr = pos;
else if (*indent_ptr > pos)
+ const char* prefix =
+ flags & fatal ? _("fatal error")
+ : flags & (errors_flag | complaint) ? _("error")
+ : _("warning");
+
+ complaint_issued |= flags & (complaint | errors_flag);
+ if (flags & (warnings_flag | silent | fatal | complaint))
+ error_message (loc, flags, prefix, message, args);
- {
- error_message (loc, fatal, _("fatal error"), message, args);
- exit (EXIT_FAILURE);
- }
- else if (flags & (complaint | warnings_flag | silent))
- {
- const char* prefix =
- flags & (errors_flag | complaint) ? _("error") : _("warning");
- if (flags & (complaint | errors_flag))
- complaint_issued = true;
- error_message (loc, flags,
- indent_ptr && *indent_ptr ? NULL : prefix,
- message, args);
- }