blob: 4ae155d293872c71060e73adfcc56b5677ae35a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# The whole point of this wrapper is to replace emboldening factor -u0 with
# -u1 under certain circumstances on Solaris.
if [ "$1,$2,$3" = "-u0,-Tlp,-man" ]; then
shift
exec /usr/bin/nroff -u1 "$@"
else
# Some other invocation of nroff
exec /usr/bin/nroff "$@"
fi
|