fixed
authoryoichi <yoichi>
Mon, 12 May 2003 14:17:49 +0000 (14:17 +0000)
committeryoichi <yoichi>
Mon, 12 May 2003 14:17:49 +0000 (14:17 +0000)
ChangeLog
mime-edit.el
mime-view.el

index a1d98c4..8ba2294 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-05-12  Yoichi NAKAYAMA  <yoichi@geiin.org>
+
+       * mime-edit.el (turn-on-mime-edit): Protect 1st arg of `message'.
+       * mime-view.el (mime-preview-follow-current-entity): Ditto.
+
 2003-05-11  Yoichi NAKAYAMA  <yoichi@geiin.org>
 
        * mime-w3.el (mime-preview-text/html): Protect 1st arg of `message'.
index c1956fe..9a3a725 100644 (file)
@@ -1057,6 +1057,7 @@ User customizable variables (not documented all of them):
                     paragraph-separate))
     (run-hooks 'mime-edit-mode-hook)
     (message
+     "%s"
      (substitute-command-keys
       "Type \\[mime-edit-exit] to exit MIME mode, and type \\[mime-edit-help] to get help."))
     ))
index b5164d4..81386cb 100644 (file)
@@ -1627,9 +1627,8 @@ It calls following-method selected from variable
        (if (functionp f)
            (funcall f new-buf)
          (message
-          (format
-           "Sorry, following method for %s is not implemented yet."
-           mode))
+          "Sorry, following method for %s is not implemented yet."
+          mode)
          ))
       )))