diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-08-02 15:19:43 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-08-02 15:20:31 +0300 |
commit | 6a1093c0004c42eeaef312456c295671496dd67a (patch) | |
tree | 4fe8286b305af3ee9c9785a6480cec857922ffe8 | |
parent | Update THANKS. (diff) | |
download | xz-6a1093c0004c42eeaef312456c295671496dd67a.tar.xz |
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.
-rw-r--r-- | build-aux/manconv.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 \ |