about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2012-02-23 01:23:24 -0500
committerThomas E. Dickey <dickey@invisible-island.net>2012-02-23 01:23:24 -0500
commit18fc1906ab9b524d98c4b77180cf955717b1e7e5 (patch)
tree42a4786a620d12b6ef3cde9e60d89a92c3c59371
parentfde4be86f4d67d01a51f881159d190002d0bd810 (diff)
downloadlynx-snapshots-18fc1906ab9b524d98c4b77180cf955717b1e7e5.tar.gz
snapshot of project "lynx", label v2-8-8deb_11b
-rw-r--r--CHANGES4
-rw-r--r--PACKAGE/debian/changelog6
-rw-r--r--PACKAGE/lynx.spec4
-rw-r--r--src/UCdomap.c6
4 files changed, 16 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 15345da3..0c043cc5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,11 @@
--- $LynxId: CHANGES,v 1.595 2012/02/23 00:42:23 tom Exp $
+-- $LynxId: CHANGES,v 1.597 2012/02/23 01:18:46 tom Exp $
 ===============================================================================
 Changes since Lynx 2.8 release
 ===============================================================================
 
 2012-02-22 (2.8.8dev.12)
+* treat charsets ISO-8859-8-E and ISO-8859-8-I as aliases of ISO-8859-8
+  (Owen Leibman)
 * amend the dev.10 change to HTLoadDocument(), which broke caching of forms,
   to limit it to just the case where the user has pressed ^R, etc (report by
   TG) -TD
diff --git a/PACKAGE/debian/changelog b/PACKAGE/debian/changelog
index a52c63a5..57371f68 100644
--- a/PACKAGE/debian/changelog
+++ b/PACKAGE/debian/changelog
@@ -1,3 +1,9 @@
+lynx-dev (2.8.8dev.12) unstable; urgency=low
+
+  * changes for dev.12
+
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Wed, 22 Feb 2012 20:23:20 -0500
+
 lynx-dev (2.8.8dev.11) unstable; urgency=low
 
   * changes for dev.11
diff --git a/PACKAGE/lynx.spec b/PACKAGE/lynx.spec
index 9ddc19f4..b00e8254 100644
--- a/PACKAGE/lynx.spec
+++ b/PACKAGE/lynx.spec
@@ -1,8 +1,8 @@
-# $LynxId: lynx.spec,v 1.11 2012/02/15 23:43:12 tom Exp $
+# $LynxId: lynx.spec,v 1.12 2012/02/23 01:22:53 tom Exp $
 Summary: A text-based Web browser
 Name: lynx
 Version: 2.8.8
-Release: dev.11
+Release: dev.12
 License: GPLv2
 Group: Applications/Internet
 Source: lynx%{version}%{release}.tgz
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")) {