+2003-05-11 Yoichi NAKAYAMA <yoichi@geiin.org>
+
+ * mime-w3.el (mime-preview-text/html): Protect 1st arg of `message'.
+ * mime-play.el (mime-mailcap-method-sentinel): Ditto.
+ (mime-view-message/external-anon-ftp): Ditto.
+ (mime-view-message/external-url): Ditto.
+
2003-04-05 Yoichi NAKAYAMA <yoichi@geiin.org>
* mime-view.el (mime-preview-toggle-display): Use boundary with
(delete-file file)
))
(remove-alist 'mime-mailcap-method-filename-alist process)
- (message (format "%s %s" process event)))
+ (message "%s %s" process event))
(defvar mime-echo-window-is-shared-with-bbdb
(module-installed-p 'bbdb)
(directory (cdr (assoc "directory" cal)))
(name (cdr (assoc "name" cal)))
(pathname (concat "/anonymous@" site ":" directory)))
- (message (concat "Accessing " (expand-file-name name pathname) "..."))
+ (message "%s" (concat "Accessing " (expand-file-name name pathname) "..."))
(funcall mime-raw-dired-function pathname)
(goto-char (point-min))
(search-forward name)
(defun mime-view-message/external-url (entity cal)
(let ((url (cdr (assoc "url" cal))))
- (message (concat "Accessing " url "..."))
+ (message "%s" (concat "Accessing " url "..."))
(funcall mime-raw-browse-url-function url)))
(run-hooks 'mime-text-decode-hook)
(condition-case err
(w3-region p (point-max))
- (error (message (format "%s" err))))
+ (error (message "%s" err)))
(mime-put-keymap-region p (point-max) w3-mode-map)
))))