From 3f5b9a837c8505db9958d2012a0c74daa15ea747 Mon Sep 17 00:00:00 2001 From: tomo Date: Fri, 12 Dec 2003 05:39:56 +0000 Subject: [PATCH] (mime-edit-user-agent-value): Add a setting for XEmacs CHISE. --- mime-edit.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mime-edit.el b/mime-edit.el index d9bb359..466effd 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -1,6 +1,7 @@ ;;; mime-edit.el --- Simple MIME Composer for GNU Emacs -;; Copyright (C) 1993,94,95,96,97,98,99,2000 Free Software Foundation, Inc. +;; Copyright (C) 1993,94,95,96,97,98,99,2000,01,02,03 +;; Free Software Foundation, Inc. ;; Author: UMEDA Masanobu ;; MORIOKA Tomohiko @@ -650,7 +651,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