From: morioka Date: Mon, 12 Apr 1999 12:22:49 +0000 (+0000) Subject: (mime-charset-coding-system-alist): There are no need to check X-Git-Tag: apel-9_17~18 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=ac8e0c04154839e03d6f36f4eb7052940742d5d9;p=elisp%2Fapel.git (mime-charset-coding-system-alist): There are no need to check coding-system `x-ctext' is defined. --- diff --git a/mcs-20.el b/mcs-20.el index 5fcd204..49bc116 100644 --- a/mcs-20.el +++ b/mcs-20.el @@ -39,14 +39,13 @@ (defcustom mime-charset-coding-system-alist (let ((rest - `((us-ascii . raw-text) + '((us-ascii . raw-text) (gb2312 . cn-gb-2312) (cn-gb . cn-gb-2312) (iso-2022-jp-2 . iso-2022-7bit-ss2) (tis-620 . tis620) (windows-874 . tis620) - ,@(unless (coding-system-p 'x-ctext) - '((x-ctext . ctext))) + (x-ctext . ctext) (unknown . undecided) (x-unknown . undecided) ))