summaryrefslogtreecommitdiff
path: root/src/roff/nroff
diff options
context:
space:
mode:
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" ;;