summaryrefslogtreecommitdiff
path: root/src/roff/nroff/nroff.sh
diff options
context:
space:
mode:
authorwl <wl>2005-06-17 07:29:33 +0000
committerwl <wl>2005-06-17 07:29:33 +0000
commit9674fe2a101e65fdc7baba36e52bf750db81245e (patch)
treef8c8e5d962aed10b5830d14b09b91d4eac81664b /src/roff/nroff/nroff.sh
parente8c4d10df0d0e7b7d2ec5181e6c0b3987f7d11ed (diff)
downloadgroff-9674fe2a101e65fdc7baba36e52bf750db81245e.tar.gz
* src/roff/nroff/nroff.sh: Add support for iso-8859-15.
Diffstat (limited to 'src/roff/nroff/nroff.sh')
-rw-r--r--src/roff/nroff/nroff.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/roff/nroff/nroff.sh b/src/roff/nroff/nroff.sh
index cc63fa7a..31202155 100644
--- a/src/roff/nroff/nroff.sh
+++ b/src/roff/nroff/nroff.sh
@@ -8,7 +8,7 @@ prog="$0"
case "`exec 2>/dev/null ; locale charmap`" in
UTF-8)
T=-Tutf8 ;;
- ISO-8859-1)
+ ISO-8859-1 | ISO-8859-15)
T=-Tlatin1 ;;
IBM-1047)
T=-Tcp1047 ;;
@@ -16,7 +16,8 @@ case "`exec 2>/dev/null ; locale charmap`" in
case "${LC_ALL-${LC_CTYPE-${LANG}}}" in
*.UTF-8)
T=-Tutf8 ;;
- iso_8859_1 | *.ISO-8859-1 | *.ISO8859-1)
+ iso_8859_1 | *.ISO-8859-1 | *.ISO8859-1 | \
+ iso_8859_15 | *.ISO-8859-15 | *.ISO8859-15)
T=-Tlatin1 ;;
*.IBM-1047)
T=-Tcp1047 ;;