(mime-edit-x-emacs-value): Don't add mule-version if
authormorioka <morioka>
Tue, 4 Nov 1997 13:03:58 +0000 (13:03 +0000)
committermorioka <morioka>
Tue, 4 Nov 1997 13:03:58 +0000 (13:03 +0000)
enable-multibyte-characters is nil.

mime-edit.el

index 70deaaf..63b131b 100644 (file)
@@ -7,7 +7,7 @@
 ;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
 ;; Created: 1994/08/21 renamed from mime.el
 ;;     Renamed: 1997/2/21 from tm-edit.el
-;; Version: $Revision: 0.92 $
+;; Version: $Revision: 0.93 $
 ;; Keywords: MIME, multimedia, multilingual, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
 ;;;
 
 (defconst mime-edit-RCS-ID
-  "$Id: mime-edit.el,v 0.92 1997-10-02 07:48:02 morioka Exp $")
+  "$Id: mime-edit.el,v 0.93 1997-11-04 13:03:58 morioka Exp $")
 
 (defconst mime-edit-version `,(get-version-string mime-edit-RCS-ID))
 
@@ -527,7 +527,10 @@ If it is not specified for a major-mode,
                   (substring emacs-version 0 (match-beginning 0))
                 emacs-version)))
       (if (featurep 'mule)
-         (concat "Emacs " ver ", MULE " mule-version
+         (concat "Emacs " ver
+                 (if enable-multibyte-characters
+                     (concat ", MULE " mule-version)
+                   " (with raw setting)")
                  (if (featurep 'meadow)
                      (concat ", " (Meadow-version))
                    ))