From d8d5720b208e4f7c6d108eb65a8b74fc54fc6c35 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Sun, 20 Mar 2005 09:12:32 +0000 Subject: [PATCH] Synch to No Gnus 200503200325. --- lisp/ChangeLog | 6 ++++++ lisp/mm-util.el | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3bee3d0..a6029ea 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2005-03-19 Aidan Kehoe + + * lisp/mm-util.el (mm-xemacs-find-mime-charset): Only call + mm-xemacs-find-mime-charset-1 if we have the mule feature + available at runtime. + 2005-03-16 Reiner Steib * nnimap.el (nnimap-open-connection): Print which authinfo file is diff --git a/lisp/mm-util.el b/lisp/mm-util.el index fe7c77c..0a51090 100644 --- a/lisp/mm-util.el +++ b/lisp/mm-util.el @@ -668,7 +668,7 @@ But this is very much a corner case, so don't worry about it." (defmacro mm-xemacs-find-mime-charset (begin end) (when (featurep 'xemacs) - `(mm-xemacs-find-mime-charset-1 ,begin ,end))) + `(and (featurep 'mule) (mm-xemacs-find-mime-charset-1 ,begin ,end)))) (defun mm-find-mime-charset-region (b e &optional hack-charsets) "Return the MIME charsets needed to encode the region between B and E. -- 1.7.10.4