From d6a81caafcfc5b888cf3036de6e283db509e9342 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?=
Date: Tue, 20 Jan 2026 20:33:34 +0000 Subject: [PATCH] doc: adjust --help hyperlinks to more standard format * src/system.h (oputs_): Use ST rather than BEL. --- src/system.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system.h b/src/system.h index 12a8d44252..bf3ad620f3 100644 --- a/src/system.h +++ b/src/system.h @@ -609,7 +609,7 @@ oputs_ (MAYBE_UNUSED char const* program, char const *option) printf ("\033]8;;%s#%s%.*s", MANUAL_URL, url_program, (int) anchor_len, option_text); } - fputs ("\a", stdout); + fputs ("\033\\", stdout); #endif #ifdef BOLD_MAN_REFS /* Note help2man strips this and will reinstate with --bold-refs. */ @@ -621,7 +621,7 @@ oputs_ (MAYBE_UNUSED char const* program, char const *option) fputs ("\033[0m", stdout); #endif #ifdef MANUAL_URL - fputs ("\033]8;;\a", stdout); + fputs ("\033]8;;\033\\", stdout); #endif /* write description. */ -- 2.47.3