From: Daniel Stenberg Date: Tue, 12 Mar 2024 07:45:22 +0000 (+0100) Subject: managen: remove space before protocols X-Git-Tag: curl-8_7_0~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=451a7a7aa23da0bd0236c82a01bb25747e359275;p=thirdparty%2Fcurl.git 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 --- 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); } }