complains (&loc, flags, message, args);
va_end (args);
}
+
+void
+complain_args (location const *loc, warnings w, int argc, char *argv[])
+{
+ switch (argc)
+ {
+ case 2:
+ complain (loc, w, "%s", _(argv[1]));
+ break;
+ case 3:
+ complain (loc, w, _(argv[1]), argv[2]);
+ break;
+ case 4:
+ complain (loc, w, _(argv[1]), argv[2], argv[3]);
+ break;
+ case 5:
+ complain (loc, w, _(argv[1]), argv[2], argv[3], argv[4]);
+ break;
+ case 6:
+ complain (loc, w, _(argv[1]), argv[2], argv[3], argv[4], argv[5]);
+ break;
+ default:
+ complain (loc, fatal, "too many arguments for complains");
+ break;
+ }
+}
void complain (location const* loc, warnings flags, char const *message, ...)
__attribute__ ((__format__ (__printf__, 3, 4)));
+/** Likewise, but with an \a argc/argv interface. */
+void complain_args (location const *loc, warnings w, int argc, char *arg[]);
+
/** Make a complaint with location and some indentation. */
void complain_at_indent (location loc, warnings flags, unsigned *indent,
char const *message, ...)
fail_for_at_directive_too_many_args (argv[0]);
fputs (last_component (argv[1]), yyout);
}
- else if (STREQ (argv[0], "@warn")
- || STREQ (argv[0], "@complain")
- || STREQ (argv[0], "@fatal"))
+ else if (STREQ (argv[0], "@warn") || STREQ (argv[0], "@warn_at")
+ || STREQ (argv[0], "@complain") || STREQ (argv[0], "@complain_at")
+ || STREQ (argv[0], "@fatal") || STREQ (argv[0], "@fatal_at"))
{
- warnings w = flag (argv[0]);
- switch (argc)
- {
- case 2:
- complain (NULL, w, "%s", _(argv[1]));
- break;
- case 3:
- complain (NULL, w, _(argv[1]), argv[2]);
- break;
- case 4:
- complain (NULL, w, _(argv[1]), argv[2], argv[3]);
- break;
- case 5:
- complain (NULL, w, _(argv[1]), argv[2], argv[3], argv[4]);
- break;
- case 6:
- complain (NULL, w, _(argv[1]), argv[2], argv[3], argv[4], argv[5]);
- break;
- default:
- fail_for_at_directive_too_many_args (argv[0]);
- break;
- }
- }
- else if (STREQ (argv[0], "@warn_at")
- || STREQ (argv[0], "@complain_at")
- || STREQ (argv[0], "@fatal_at"))
- {
- warnings w = flag (argv[0]);
+ warnings w = flag (*argv);
location loc;
- if (argc < 4)
- fail_for_at_directive_too_few_args (argv[0]);
- boundary_set_from_string (&loc.start, argv[1]);
- boundary_set_from_string (&loc.end, argv[2]);
- switch (argc)
+ location *locp = NULL;
+ if (STREQ (*argv + strlen (*argv) - 3, "_at"))
{
- case 4:
- complain (&loc, w, "%s", _(argv[3]));
- break;
- case 5:
- complain (&loc, w, _(argv[3]), argv[4]);
- break;
- case 6:
- complain (&loc, w, _(argv[3]), argv[4], argv[5]);
- break;
- case 7:
- complain (&loc, w, _(argv[3]), argv[4], argv[5], argv[6]);
- break;
- case 8:
- complain (&loc, w, _(argv[3]), argv[4], argv[5], argv[6],
- argv[7]);
- break;
- default:
- fail_for_at_directive_too_many_args (argv[0]);
- break;
+ if (argc < 4)
+ fail_for_at_directive_too_few_args (argv[0]);
+ boundary_set_from_string (&loc.start, argv[1]);
+ boundary_set_from_string (&loc.end, argv[2]);
+ argc -= 2;
+ argv += 2;
+ locp = &loc;
}
+ else if (argc < 2)
+ fail_for_at_directive_too_few_args (argv[0]);
+ complain_args (locp, w, argc, argv);
}
else if (STREQ (argv[0], "@output"))
{