From: Benno Schulenberg Date: Thu, 18 Sep 2025 08:57:04 +0000 (+0200) Subject: column: (usage) wrap two descriptions, to make them fit within 80 columns X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fac2376b9df8bee2d278f519488ac1ab667be33c;p=thirdparty%2Futil-linux.git column: (usage) wrap two descriptions, to make them fit within 80 columns Signed-off-by: Benno Schulenberg --- diff --git a/text-utils/column.c b/text-utils/column.c index 29ed25b2f..7a37cb886 100644 --- a/text-utils/column.c +++ b/text-utils/column.c @@ -999,7 +999,8 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" -C, --table-column define column\n"), out); fputs(_(" -N, --table-columns comma separated columns names\n"), out); fputs(_(" -l, --table-columns-limit maximal number of input columns\n"), out); - fputs(_(" -E, --table-noextreme don't count long text from the columns to column width\n"), out); + fputs(_(" -E, --table-noextreme don't count long text in these columns\n" + " to the column's width\n"), out); fputs(_(" -d, --table-noheadings don't print header\n"), out); fputs(_(" -m, --table-maxout fill all available space\n"), out); fputs(_(" -e, --table-header-repeat repeat header for each page\n"), out); @@ -1018,7 +1019,8 @@ static void __attribute__((__noreturn__)) usage(void) fputs(USAGE_SEPARATOR, out); fputs(_(" -c, --output-width width of output in number of characters\n"), out); - fputs(_(" -o, --output-separator columns separator for table output (default is two spaces)\n"), out); + fputs(_(" -o, --output-separator columns separator for table output\n" + " (default is two spaces)\n"), out); fputs(_(" -s, --separator possible table delimiters\n"), out); fputs(_(" -x, --fillrows fill rows before columns\n"), out); fputs(_(" -S, --use-spaces minimal whitespaces between columns (no tabs)\n"), out);