Synch to Gnus 200311140714.
authoryamaoka <yamaoka>
Fri, 14 Nov 2003 07:50:11 +0000 (07:50 +0000)
committeryamaoka <yamaoka>
Fri, 14 Nov 2003 07:50:11 +0000 (07:50 +0000)
lisp/ChangeLog
lisp/mm-util.el

index 789dca5..426e581 100644 (file)
@@ -1,3 +1,8 @@
+2003-11-14  Simon Josefsson  <jas@extundo.com>
+
+       * mm-util.el (mm-charset-synonym-alist): Map BIG5-HKSCS to BIG5
+       when it isn't available.
+
 2003-11-13  Alex Schroeder  <alex@gnu.org>
 
        * nnrss.el (nnrss-check-group): Use dc:contributor if neither
index 3c164a7..43e1d1f 100644 (file)
@@ -148,6 +148,9 @@ In XEmacs, also return non-nil if CS is a coding system object."
     ;; ISO-8859-15 is very similar to ISO-8859-1.  But it's _different_!
     ,@(unless (mm-coding-system-p 'iso-8859-15)
        '((iso-8859-15 . iso-8859-1)))
+    ;; BIG-5HKSCS is similar to, but different than, BIG-5.
+    ,@(unless (mm-coding-system-p 'big5-hkscs)
+       '((big5-hkscs . big5)))
     ;; Windows-1252 is actually a superset of Latin-1.  See also
     ;; `gnus-article-dumbquotes-map'.
     ,@(unless (mm-coding-system-p 'windows-1252)