+2002-01-19 Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>
+
+ * elmo-util.el (elmo-save-buffer): The first argument of message
+ is a format control string.
+
2002-01-19 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
* elmo.el (elmo-diff-new): Fixed (Adapted to doc-string of
(encode-mime-charset-region (point-min) (point-max) mime-charset))
(as-binary-output-file
(write-region (point-min) (point-max) filename nil 'no-msg)))
- (message (format "%s is not writable." filename)))))
+ (message "%s is not writable." filename))))
(defun elmo-object-save (filename object &optional mime-charset)
"Save OBJECT to the file specified by FILENAME.
(write-region (point-min) (point-max)
filename nil 'no-msg)
(set-file-modes filename 384))
- (message (format "%s is not writable." filename)))
+ (message "%s is not writable." filename))
(kill-buffer tmp-buffer))))
(defun elmo-get-passwd (key)
+2002-01-19 Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>
+
+ * wl-draft.el (wl-draft-write-sendlog): The first argument of
+ message is a format control string.
+ * wl-expire.el (wl-expire-append-log): Ditto.
+ * wl-mime.el (wl-summary-burst-subr): Ditto.
+ * wl-mule.el (wl-face-spec-set-match-display): Ditto.
+ * wl-summary.el (wl-summary-edit-addresses-subr): Ditto.
+
2002-01-19 Kenichi OKADA <okada@opaopa.org>
* wl-vars.el (wl-message-buffer-prefetch-depth): Default is 3.
(if (file-writable-p filename)
(write-region-as-binary (point-min) (point-max)
filename t 'no-msg)
- (message (format "%s is not writable." filename)))))))
+ (message "%s is not writable." filename))))))
(defun wl-draft-get-header-delimiter (&optional delete)
;; If DELETE is non-nil, replace the header delimiter with a blank line
(if (file-writable-p filename)
(write-region (point-min) (point-max)
filename t 'no-msg)
- (message (format "%s is not writable." filename)))
+ (message "%s is not writable." filename))
(kill-buffer tmp-buf)))))
(require 'product)
number))))
((and (eq (cdr (assq 'type content-type)) 'message)
(eq (cdr (assq 'subtype content-type)) 'rfc822))
- (message (format "Bursting...%s" (setq number (+ 1 number))))
+ (message "Bursting...%s" (setq number (+ 1 number)))
(setq entity
(car (mime-entity-children message-entity)))
(with-temp-buffer
((eq req 'background)
(memq background options))
(t
- (message (format "\
-Warning: Unknown req `%S' with options `%S'" req options))
+ (message "\
+Warning: Unknown req `%S' with options `%S'" req options)
nil))))
match)))))
;; returns nil if there's no change.
(if (elmo-get-hash-val (downcase the-email) wl-address-petname-hash)
(let (char)
- (message (format "'%s' already exists. (e)dit/(d)elete/(c)ancel?"
- the-email))
+ (message "'%s' already exists. (e)dit/(d)elete/(c)ancel?"
+ the-email)
(while (not (or (eq (setq char (read-char)) ?\r)
(eq char ?\n)
(eq char ? )