From 451a7a7aa23da0bd0236c82a01bb25747e359275 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 12 Mar 2024 08:45:22 +0100 Subject: [PATCH] managen: remove space before protocols For options that are listed for specific protocols, the protocols (shown first within parentheses) are now output without the leading space in the manpage output. Closes #13105 --- scripts/managen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/managen b/scripts/managen index d950bd5866..ab96861b8f 100755 --- a/scripts/managen +++ b/scripts/managen @@ -232,7 +232,7 @@ sub protocols { return ".SH \"PROTOCOLS\"\n$data\n"; } else { - return " ($data) " if($manpage); + return "($data) " if($manpage); return "[1]($data) " if(!$manpage); } } -- 2.47.3