diff options
author | Jim Meyering <jim@meyering.net> | 2004-11-14 08:56:53 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-11-14 08:56:53 +0000 |
commit | 81720d306e51520bbc5e5e522433d73dae311122 (patch) | |
tree | 6f1e3ff7cfb4eff4d09c3052e92b02ba1f9fce1c | |
parent | cf53828748e5ef1b32d53a34f55685b3def2e305 (diff) | |
download | coreutils-81720d306e51520bbc5e5e522433d73dae311122.tar.xz |
(usage): Put the description of `[-n] STRING'
on two lines, one for `-n STRING' and one for `STRING' so that
help2man properly escapes the `-'. Otherwise, the hyphen is
rendered inappropriately in UTF-8 locales.
-rw-r--r-- | src/test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test.c b/src/test.c index 9d5563178..386e17d2b 100644 --- a/src/test.c +++ b/src/test.c @@ -857,7 +857,8 @@ EXPRESSION is true or false and sets exit status. It is one of:\n\ "), stdout); fputs (_("\ \n\ - [-n] STRING the length of STRING is nonzero\n\ + -n STRING the length of STRING is nonzero\n\ + STRING equivalent to -n STRING\n\ -z STRING the length of STRING is zero\n\ STRING1 = STRING2 the strings are equal\n\ STRING1 != STRING2 the strings are not equal\n\ |