#include "c.h"
#include "nls.h"
+#include "cctype.h"
static inline const char *option_to_longopt(int c, const struct option *opts)
{
else if (status[e] != c) {
size_t ct = 0;
- fprintf(stderr, _("%s: these options are "
- "mutually exclusive:"),
+ fprintf(stderr, _("%s: mutually exclusive "
+ "arguments:"),
program_invocation_short_name);
for (op = excl[e];
const char *n = option_to_longopt(*op, opts);
if (n)
fprintf(stderr, " --%s", n);
- else
+ else if (c_isgraph(*op))
fprintf(stderr, " -%c", *op);
}
fputc('\n', stderr);