Changed the erorr message issued when there is an unmatched quote to

point out that the user might have wanted to use the -0 option instead.
This commit is contained in:
James Youngman
2004-10-22 17:19:50 +00:00
parent 6091885921
commit dc910dc705

View File

@@ -646,7 +646,7 @@ read_line (void)
case QUOTE:
if (c == '\n')
error (1, 0, _("unmatched %s quote"),
error (1, 0, _("unmatched %s quote; by default quotes are special to xargs unless you use the -0 option"),
quotc == '"' ? _("double") : _("single"));
if (c == quotc)
{