Include "quote.h".
Rather than this: error (..., "...`%s'...", arg);
do this: error (..., "...%s...", quote (arg));
#include "long-options.h"
#include "error.h"
#include "inttostr.h"
+#include "quote.h"
#include "quotearg.h"
#include "strnumcmp.h"
#include "xstrtol.h"
error (0, 0, _("\
warning: unportable BRE: `%s': using `^' as the first character\n\
of the basic regular expression is not portable; it is being ignored"),
- pv->u.s);
+ quote (pv->u.s));
}
len = strlen (pv->u.s);