summaryrefslogtreecommitdiffstats
path: root/contrib/groff/nroff
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1996-09-11 17:55:20 +0000
committerache <ache@FreeBSD.org>1996-09-11 17:55:20 +0000
commitbe986a9f95c23703e5a7063ecd74a9e393c06705 (patch)
tree3fa0f8d099265da429ab9ab8f74ad0504efb8237 /contrib/groff/nroff
parent2c516f982c65eae60508683bc7d7e9876ac52da6 (diff)
downloadFreeBSD-src-be986a9f95c23703e5a7063ecd74a9e393c06705.zip
FreeBSD-src-be986a9f95c23703e5a7063ecd74a9e393c06705.tar.gz
Fix latin1 guessing
Add koi8-r guessing
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