From 477752620c9826ce9b568045f3184d04464ff67e Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 27 Mar 2025 10:58:24 +0100 Subject: [PATCH] more: improve help readability The internal help can be printed within the current content. In this case, it's hard to see where the help starts. Add a separator to make it easier to read. Signed-off-by: Karel Zak --- text-utils/more.c | 1 + 1 file changed, 1 insertion(+) diff --git a/text-utils/more.c b/text-utils/more.c index a035591af..92b257046 100644 --- a/text-utils/more.c +++ b/text-utils/more.c @@ -1545,6 +1545,7 @@ static char *find_editor(void) static void runtime_usage(void) { + print_separator('-', 79); fputs(_("Most commands optionally preceded by integer argument k. " "Defaults in brackets.\n" "Star (*) indicates argument becomes new default.\n"), stdout); -- 2.47.2