[BACK]Return to gmdiff CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/gmdiff between version 1.1 and 1.4

version 1.1, 2013/06/22 08:54:13 version 1.4, 2015/04/05 09:30:24
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # Copyright (c) 2013 Ingo Schwarze <schwarze@openbsd.org>  # Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
 #  #
 # Permission to use, copy, modify, and distribute this software for any  # Permission to use, copy, modify, and distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above  # purpose with or without fee is hereby granted, provided that the above
Line 19  if [ `id -u` -eq 0 ]; then
Line 19  if [ `id -u` -eq 0 ]; then
 fi  fi
   
 if [ $# -eq 0 ]; then  if [ $# -eq 0 ]; then
   echo "usage: $0 manual_source_file ..."    echo "usage: $0 -h manual_source_file ..."
   exit 1    exit 1
 fi  fi
   
   if [ "X$1" = "X-h" ]; then
     shift
     export PATH="/usr/local/heirloom-doctools/bin:$PATH"
     EQN="neqn"
     ROFF="nroff"
     MOPT="-Omdoc $MOPT"
   else
     EQN="eqn -Tascii"
     ROFF="groff -ww -Tascii -P -c"
   fi
   MOPT="-Werror $MOPT"
   
 while [ -n "$1" ]; do  while [ -n "$1" ]; do
   file=$1    file=$1
   shift    shift
   echo " ========== $file ========== "    echo " ========== $file ========== "
   tbl $file | groff -mandoc -Tascii -P -c 2>&1 > /tmp/groff.out    tbl $file | $EQN | $ROFF -mandoc 2> /tmp/roff.err > /tmp/roff.out
   mandoc -Ios='OpenBSD ports' -Werror $file 2>&1 > /tmp/mandoc.out    ${MANDOC:=mandoc} -Ios='OpenBSD ports' $MOPT $file \
   diff -au /tmp/groff.out /tmp/mandoc.out 2>&1      2> /tmp/mandoc.err > /tmp/mandoc.out
     for i in roff mandoc; do
       [[ -s /tmp/$i.err ]] && echo "$i errors:" && cat /tmp/$i.err
     done
     diff -au /tmp/roff.out /tmp/mandoc.out 2>&1
 done  done
   
 exit 0  exit 0

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.4

CVSweb