From: Lasse Collin Date: Wed, 2 Aug 2023 12:19:43 +0000 (+0300) Subject: build-aux/manconv.sh: Fix US-ASCII and UTF-8 output. X-Git-Tag: v5.5.1alpha~221 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8c2203b2c76466d8d3387c5212b46151de8e605;p=thirdparty%2Fxz.git build-aux/manconv.sh: Fix US-ASCII and UTF-8 output. groff defaults to SGR escapes. Using -P-c passes -c to grotty which restores the old behavior. Perhaps there is a better way to get pure plain text output but this works for now. --- diff --git a/build-aux/manconv.sh b/build-aux/manconv.sh index e53b0269..73e8e3b8 100644 --- a/build-aux/manconv.sh +++ b/build-aux/manconv.sh @@ -38,10 +38,10 @@ s/^\\.PD\$/.PD $PD/" case $FORMAT in ascii) - groff -t -mandoc -Tascii | col -bx + groff -t -mandoc -Tascii -P-c | col -bx ;; utf8) - groff -t -mandoc -Tutf8 | col -bx + groff -t -mandoc -Tutf8 -P-c | col -bx ;; ps) sed "$SED_PD" | groff -dpaper=$PAPER -t -mandoc \