From 65b07458131948a024533826dbe7d08f1a8f3da3 Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Wed, 25 Apr 2001 18:44:25 +0000 Subject: [PATCH] Kluge around some problems with iso-8859-9 locales. --- charset.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/charset.c b/charset.c index 324652c1..92cdab40 100644 --- a/charset.c +++ b/charset.c @@ -171,7 +171,15 @@ PreferredMIMENames[] = { "l8", "iso-8859-14" }, { "iso_8859-15", "iso-8859-15" }, - + { "latin9", "iso-8859-15" }, /* this is not a bug */ + + { "ýso-8859-9", "iso-8859-9" }, /* work around a problem: + * In iso-8859-9, the lower- + * case version of I is ý, + * not i. + */ + + /* * If you happen to encounter system-specific brain-damage with * respect to character set naming, please add it here, and -- 2.50.1