diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-16 21:41:57 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-16 21:41:57 +0000 |
commit | f682977c0cce43713d0e4a112fc3dbb4fa58d013 (patch) | |
tree | e5b38562bef590cffe71f70fde3bf77c2c8c8566 /src | |
parent | 0cda9b5eb8a8b9e297a95817f02bda12c21de94e (diff) | |
download | coreutils-f682977c0cce43713d0e4a112fc3dbb4fa58d013.tar.xz |
whoops: Adding quote(...) isn't enough :)
remove quotes from the string, too.
Diffstat (limited to 'src')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 1c245b832..fae3795a8 100644 --- a/src/expr.c +++ b/src/expr.c @@ -422,7 +422,7 @@ docolon (VALUE *sv, VALUE *pv) if (pv->u.s[0] == '^') { error (0, 0, _("\ -warning: unportable BRE: `%s': using `^' as the first character\n\ +warning: unportable BRE: %s: using `^' as the first character\n\ of the basic regular expression is not portable; it is being ignored"), quote (pv->u.s)); } |