diff options
author | ache <ache@FreeBSD.org> | 1996-09-11 17:55:20 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-09-11 17:55:20 +0000 |
commit | be986a9f95c23703e5a7063ecd74a9e393c06705 (patch) | |
tree | 3fa0f8d099265da429ab9ab8f74ad0504efb8237 /contrib/groff | |
parent | 2c516f982c65eae60508683bc7d7e9876ac52da6 (diff) | |
download | FreeBSD-src-be986a9f95c23703e5a7063ecd74a9e393c06705.zip FreeBSD-src-be986a9f95c23703e5a7063ecd74a9e393c06705.tar.gz |
Fix latin1 guessing
Add koi8-r guessing
Diffstat (limited to 'contrib/groff')
-rwxr-xr-x | contrib/groff/nroff/nroff.sh | 8 | ||||
-rwxr-xr-x | contrib/groff/src/roff/nroff/nroff.sh | 8 |
2 files changed, 14 insertions, 2 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 diff --git a/contrib/groff/src/roff/nroff/nroff.sh b/contrib/groff/src/roff/nroff/nroff.sh index 5c6100e..05b953b 100755 --- a/contrib/groff/src/roff/nroff/nroff.sh +++ b/contrib/groff/src/roff/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 |