From: Benno Schulenberg Date: Thu, 18 Sep 2025 08:57:03 +0000 (+0200) Subject: column: (usage) correct the description of --wrap-separator X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=737aa238520fbe525c7b4afb191afd0b060782fd;p=thirdparty%2Futil-linux.git column: (usage) correct the description of --wrap-separator Option --wrap-separator does not imply --table-wrap, but requires it in order to have any effect. Also, shorten the text a bit to fit within 80 columns. Signed-off-by: Benno Schulenberg --- diff --git a/text-utils/column.c b/text-utils/column.c index 656d4f14a..29ed25b2f 100644 --- a/text-utils/column.c +++ b/text-utils/column.c @@ -1007,7 +1007,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" -R, --table-right right align text in these columns\n"), out); fputs(_(" -T, --table-truncate truncate text in the columns when necessary\n"), out); fputs(_(" -W, --table-wrap wrap text in the columns when necessary\n"), out); - fputs(_(" --wrap-separator wrap text at this separator (implies --table-wrap)\n"), out); + fputs(_(" --wrap-separator wrap at this separator (requires --table-wrap)\n"), out); fputs(_(" -L, --keep-empty-lines don't ignore empty lines\n"), out); fputs(_(" -J, --json use JSON output format for table\n"), out);