From 88382056c40d87a5621838b1815cecc21878bc93 Mon Sep 17 00:00:00 2001 From: yoichi Date: Sun, 14 Dec 2003 14:58:10 +0000 Subject: [PATCH] merge from semi-1_14 branch: * mime-edit.el (mime-edit-user-agent-value): Add a setting for XEmacs CHISE --- ChangeLog | 5 +++++ mime-edit.el | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c085143..e3a3869 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-12-12 MORIOKA Tomohiko + + * mime-edit.el (mime-edit-user-agent-value): Add a setting for + XEmacs CHISE. + 2002-05-18 ARISAWA Akihiro * mime-play.el (mime-activate-mailcap-method): Don't use diff --git a/mime-edit.el b/mime-edit.el index 8538332..5f36513 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -609,7 +609,10 @@ If it is not specified for a major-mode, (if (fboundp 'apel-version) (concat (apel-version) " ")) (if (featurep 'xemacs) - (concat (cond ((featurep 'utf-2000) + (concat (cond ((and (featurep 'chise) + (boundp 'xemacs-chise-version)) + (concat "CHISE-MULE/" xemacs-chise-version)) + ((featurep 'utf-2000) (concat "UTF-2000-MULE/" utf-2000-version)) ((featurep 'mule) "MULE")) " XEmacs" -- 1.7.10.4