summaryrefslogtreecommitdiff
path: root/src/roff/nroff
diff options
context:
space:
mode:
authorwlemb <wlemb>2000-05-28 21:46:39 +0000
committerwlemb <wlemb>2000-05-28 21:46:39 +0000
commitc18727f21242efc8170dd82fd244ab251ae0e70f (patch)
tree52775fc18426acb6eb266b6965c26388420bfc89 /src/roff/nroff
parent2a0b0a2a11a0baa754770570f1f0301a82aed619 (diff)
downloadgroff-c18727f21242efc8170dd82fd244ab251ae0e70f.tar.gz
* src/roff/nroff/nroff.sh: Fix infinite loop.
* src/utils/indxbib/indxbib.cc: Add declaration of mkstemp(). * man/roff.man: Removed unused macro. * Makefile.in (dist): Remove src/xditview/Imakefile explicitly. This is needed e.g. if you do `make distclean; ./configure; make dist'.
Diffstat (limited to 'src/roff/nroff')
-rw-r--r--src/roff/nroff/nroff.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/roff/nroff/nroff.sh b/src/roff/nroff/nroff.sh
index 095c047b..b1cab836 100644
--- a/src/roff/nroff/nroff.sh
+++ b/src/roff/nroff/nroff.sh
@@ -36,7 +36,10 @@ esac
opts=
safer=-S
-for i; do
+# `for i; do' doesn't work with some versions of sh
+
+for i
+ do
case $1 in
-h)
opts="$opts -P-h" ;;