From a21390c6a876a1630a9d9f3d3d43869d39ab951c Mon Sep 17 00:00:00 2001 From: Werner LEMBERG Date: Fri, 17 Jun 2005 07:29:33 +0000 Subject: [PATCH] * src/roff/nroff/nroff.sh: Add support for iso-8859-15. --- ChangeLog | 4 ++++ src/roff/nroff/nroff.sh | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ea307676..74dfdc23 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-06-16 Bernd Warken + + * src/roff/nroff/nroff.sh: Add support for iso-8859-15. + 2005-06-15 Werner LEMBERG Another try to update getopt files. This time we add a dummy 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 ;; -- 2.11.4.GIT