diff options
author | Alexey Zelkin <phantom@FreeBSD.org> | 1999-09-23 13:40:28 +0000 |
---|---|---|
committer | Alexey Zelkin <phantom@FreeBSD.org> | 1999-09-23 13:40:28 +0000 |
commit | 25b666e0ca41343522145523ad47d3c30a9428a4 (patch) | |
tree | d25458cb1aeef1c25148b680bf93d5e9479c4297 /contrib/groff/src | |
parent | 0dc03e0114a02a946281ea8e29671acd3ea2b07e (diff) | |
download | src-25b666e0ca41343522145523ad47d3c30a9428a4.tar.gz src-25b666e0ca41343522145523ad47d3c30a9428a4.zip |
Learn nroff about -p and -t options. It allows to preprocess
file with pic(1) and tbl(1).
Not objected to: mpp
Notes
Notes:
svn path=/head/; revision=51607
Diffstat (limited to 'contrib/groff/src')
-rwxr-xr-x | contrib/groff/src/roff/nroff/nroff.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/groff/src/roff/nroff/nroff.sh b/contrib/groff/src/roff/nroff/nroff.sh index 2515968b1d2e..57e5d454938b 100755 --- a/contrib/groff/src/roff/nroff/nroff.sh +++ b/contrib/groff/src/roff/nroff/nroff.sh @@ -1,5 +1,6 @@ #!/bin/sh # Emulate nroff with groff. +# $FreeBSD$ prog="$0" # Default device. @@ -30,7 +31,7 @@ do echo "$prog: option $1 requires an argument" >&2 exit 1 ;; - -i|-S|-[mrno]*) + -[iStp]|-[mrno]*) opts="$opts $1"; ;; |