From: Alejandro Colomar Date: Fri, 2 May 2025 15:08:20 +0000 (+0200) Subject: src/bin/diffman-git: Disable adjustment by default X-Git-Tag: man-pages-6.14~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=637b0aa571b61d98c717e7ab7490df8a3d9e4841;p=thirdparty%2Fman-pages.git src/bin/diffman-git: Disable adjustment by default One can still enable it by setting an empty MANROFFOPT. Suggested-by: "G. Branden Robinson" Signed-off-by: Alejandro Colomar --- diff --git a/src/bin/diffman-git b/src/bin/diffman-git index ede506c91..25c0a98b6 100755 --- a/src/bin/diffman-git +++ b/src/bin/diffman-git @@ -31,6 +31,7 @@ git rev-parse --show-toplevel | read -r dir; cd "$dir"; test -v MAN_KEEP_FORMATTING || export MAN_KEEP_FORMATTING=1; +test -v MANROFFOPT || export MANROFFOPT='-d AD=l'; # shellcheck disable=SC2206 # We want only non-empty variables in the array. opts=($s $w $u);