From: yamaoka Date: Wed, 28 Aug 2002 07:13:57 +0000 (+0000) Subject: * mime-edit.el (mime-edit-user-agent-value): Add `xemacs-extra-name'. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=ca922d6ccb58aa72b1800ed1e976597c806d7b74;p=elisp%2Fsemi.git * mime-edit.el (mime-edit-user-agent-value): Add `xemacs-extra-name'. --- diff --git a/ChangeLog b/ChangeLog index 562fd2b..e297c0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-08-28 Katsumi Yamaoka + + * mime-edit.el (mime-edit-user-agent-value): Add + `xemacs-extra-name'. + 2001-07-31 TAKAHASHI Kaoru * mime-edit.el (mime-edit-translate-body): Revert; insert diff --git a/mime-edit.el b/mime-edit.el index cc0dd1d..5d39885 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -644,7 +644,14 @@ If it is not specified for a `major-mode', ;; XEmacs versions earlier than 21.1.1. (format " (patch %d)" emacs-patch-level)) (t "")) - " (" xemacs-codename ") (" + " (" xemacs-codename ")" + ;; `xemacs-extra-name' has appeared in the + ;; development version of XEmacs 21.5-b8. + (if (and (boundp 'xemacs-extra-name) + (symbol-value 'xemacs-extra-name)) + (concat " " (symbol-value 'xemacs-extra-name)) + "") + " (" system-configuration ")") " (" emacs-version ")")) (let ((ver (if (string-match "\\.[0-9]+$" emacs-version)