diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2012-02-23 01:23:24 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2012-02-23 01:23:24 -0500 |
commit | 18fc1906ab9b524d98c4b77180cf955717b1e7e5 (patch) | |
tree | 42a4786a620d12b6ef3cde9e60d89a92c3c59371 /src | |
parent | fde4be86f4d67d01a51f881159d190002d0bd810 (diff) | |
download | lynx-snapshots-18fc1906ab9b524d98c4b77180cf955717b1e7e5.tar.gz |
snapshot of project "lynx", label v2-8-8deb_11b
Diffstat (limited to 'src')
-rw-r--r-- | src/UCdomap.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/UCdomap.c b/src/UCdomap.c index e36f6f1e..ea429dde 100644 --- a/src/UCdomap.c +++ b/src/UCdomap.c @@ -1,5 +1,5 @@ /* - * $LynxId: UCdomap.c,v 1.94 2012/02/20 01:08:51 Thorsten.Glaser Exp $ + * $LynxId: UCdomap.c,v 1.95 2012/02/23 01:05:42 tom Exp $ * * UCdomap.c * ========= @@ -1559,6 +1559,10 @@ int UCGetLYhndl_byMIME(const char *value) if (!strncasecomp(value, "iso", 3) && !StrNCmp(value + 3, "8859", 4)) { return getLYhndl_byCP("iso-", value + 3); } + if (!strcasecomp(value, "iso-8859-8-i") || + !strcasecomp(value, "iso-8859-8-e")) { + return UCGetLYhndl_byMIME("iso-8859-8"); + } #if !NO_CHARSET_euc_jp if (!strcasecomp(value, "x-euc-jp") || !strcasecomp(value, "eucjp")) { |