aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-04-24 13:58:30 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-04-24 13:58:30 +0000
commitefbc43e8f83254350c5c888a542a889eded482fa (patch)
treeb16d0b74719b195bd725fd9ed7655c053ada1293
parentf1c25e8f31cd940a0ad9929a6a27f323be803fd5 (diff)
downloadmandoc-efbc43e8f83254350c5c888a542a889eded482fa.tar.gz
mandoc-efbc43e8f83254350c5c888a542a889eded482fa.tar.zst
mandoc-efbc43e8f83254350c5c888a542a889eded482fa.zip
Better mandoc(1) -I and -T options for Heirloom comparisons.
Filter through col(1) -b for Heirloom because it produces double encoding. Switch on mandoc(1) -Wall in groff comparisons. Update usage.
-rw-r--r--gmdiff17
1 files changed, 10 insertions, 7 deletions
diff --git a/gmdiff b/gmdiff
index 32688bf2..65cf353d 100644
--- a/gmdiff
+++ b/gmdiff
@@ -1,5 +1,5 @@
#!/bin/sh
-# Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
+# Copyright (c) 2013,2014,2015,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
@@ -19,7 +19,7 @@ if [ `id -u` -eq 0 ]; then
fi
if [ $# -eq 0 ]; then
- echo "usage: $0 [-h] manual_source_file ..."
+ echo "usage: $0 [-h|-u] manual_source_file ..."
exit 1
fi
@@ -28,22 +28,25 @@ if [ "X$1" = "X-h" ]; then
export PATH="/usr/local/heirloom-doctools/bin:$PATH"
EQN="neqn"
ROFF="nroff"
- MOPT="-Omdoc $MOPT"
+ MOPT="-Ios=BSD -Tascii $MOPT"
+ COLPIPE="col -b"
elif [ "X$1" = "X-u" ]; then
shift
ROFF="groff -ket -ww -Tutf8 -P -c"
- MOPT="-Werror -Tutf8 $MOPT"
+ MOPT="-Ios=OpenBSD -Wall -Tutf8 $MOPT"
+ COLPIPE="cat"
else
ROFF="groff -et -ww -mtty-char -Tascii -P -c"
- MOPT="-Werror -Tascii $MOPT"
+ MOPT="-Ios=OpenBSD -Wall -Tascii $MOPT"
+ COLPIPE="cat"
fi
while [ -n "$1" ]; do
file=$1
shift
echo " ========== $file ========== "
- $ROFF -mandoc $file 2> /tmp/roff.err > /tmp/roff.out
- ${MANDOC:=mandoc} -Ios=OpenBSD $MOPT $file \
+ $ROFF -mandoc $file | $COLPIPE 2> /tmp/roff.err > /tmp/roff.out
+ ${MANDOC:=mandoc} $MOPT $file | $COLPIPE \
2> /tmp/mandoc.err > /tmp/mandoc.out
for i in roff mandoc; do
[ -s /tmp/$i.err ] && echo "$i errors:" && cat /tmp/$i.err