summaryrefslogtreecommitdiffstats
path: root/contrib/groff/nroff
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/groff/nroff')
-rwxr-xr-xcontrib/groff/nroff/nroff.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib/groff/nroff/nroff.sh b/contrib/groff/nroff/nroff.sh
index 5c6100e..05b953b 100755
--- a/contrib/groff/nroff/nroff.sh
+++ b/contrib/groff/nroff/nroff.sh
@@ -3,12 +3,18 @@
prog="$0"
# Default device.
-if test "X$LC_CTYPE" = "Xiso_8859_1" || test "X$LESSCHARSET" = "Xlatin1"
+if test `expr "$LC_CTYPE" : ".*\.ISO_8859-1"` -gt 0 || \
+ test `expr "$LANG" : ".*\.ISO_8859-1"` -gt 0
then
T=-Tlatin1
else
+if test "X$LC_CTYPE" = "Xru_SU.KOI8-R" || test "X$LANG" = "Xru_SU.KOI8-R"
+then
+ T=-Tkoi8-r
+else
T=-Tascii
fi
+fi
opts=
for i
OpenPOWER on IntegriCloud