From fac2376b9df8bee2d278f519488ac1ab667be33c Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Thu, 18 Sep 2025 10:57:04 +0200 Subject: [PATCH] column: (usage) wrap two descriptions, to make them fit within 80 columns Signed-off-by: Benno Schulenberg --- text-utils/column.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); -- 2.47.3