From cbf75b1e3f7f3265f0a9da3db7cf721a31ffda94 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 14 Nov 2003 07:50:11 +0000 Subject: [PATCH] Synch to Gnus 200311140714. --- lisp/ChangeLog | 5 +++++ lisp/mm-util.el | 3 +++ 2 files changed, 8 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 789dca5..426e581 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-11-14 Simon Josefsson + + * mm-util.el (mm-charset-synonym-alist): Map BIG5-HKSCS to BIG5 + when it isn't available. + 2003-11-13 Alex Schroeder * nnrss.el (nnrss-check-group): Use dc:contributor if neither diff --git a/lisp/mm-util.el b/lisp/mm-util.el index 3c164a7..43e1d1f 100644 --- a/lisp/mm-util.el +++ b/lisp/mm-util.el @@ -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) -- 1.7.10.4