* mime-edit.el (mime-edit-user-agent-value): Add `xemacs-extra-name'.
authoryamaoka <yamaoka>
Wed, 28 Aug 2002 07:14:05 +0000 (07:14 +0000)
committeryamaoka <yamaoka>
Wed, 28 Aug 2002 07:14:05 +0000 (07:14 +0000)
ChangeLog
mime-edit.el

index 3324410..7277bdc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-08-28  Katsumi Yamaoka   <yamaoka@jpl.org>
+
+       * mime-edit.el (mime-edit-user-agent-value): Add
+       `xemacs-extra-name'.
+
+\f
 2002-07-08  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
 
        * SEMI: Version 1.14.4 (Hosorogi) released.
index 8716c25..40ce497 100644 (file)
@@ -669,7 +669,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)