From 4a1a312dd40669d015dbe8a599bc51b4f1a12055 Mon Sep 17 00:00:00 2001 From: yoichi Date: Mon, 11 Nov 2002 04:39:54 +0000 Subject: [PATCH] Use "Operating...done" convention for the message according to the Emacs Lisp Reference Manual. --- mime-edit.el | 4 ++-- mime-image.el | 2 +- mime-mc.el | 4 ++-- mime-play.el | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/mime-edit.el b/mime-edit.el index 1bd2e3d..e920e16 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -2670,7 +2670,7 @@ Content-Type: message/partial; id=%s; number=%d; total=%d\n%s\n" (message (format "Sending %d/%d..." mime-edit-partial-number total)) (call-interactively command) - (message (format "Sending %d/%d... done" + (message (format "Sending %d/%d...done" mime-edit-partial-number total)) ) (setq mime-edit-partial-number @@ -2688,7 +2688,7 @@ Content-Type: message/partial; id=%s; number=%d; total=%d\n%s\n" (save-excursion (message (format "Sending %d/%d..." mime-edit-partial-number total)) - (message (format "Sending %d/%d... done" + (message (format "Sending %d/%d...done" mime-edit-partial-number total)) ) ))) diff --git a/mime-image.el b/mime-image.el index 76c2335..70347b0 100644 --- a/mime-image.el +++ b/mime-image.el @@ -196,7 +196,7 @@ (save-excursion (mime-image-insert image) (insert "\n") - (message "Decoding image... done"))))) + (message "Decoding image...done"))))) ;;; @ end ;;; diff --git a/mime-mc.el b/mime-mc.el index 7e5cb26..a9f1ebc 100644 --- a/mime-mc.el +++ b/mime-mc.el @@ -130,7 +130,7 @@ Content-Transfer-Encoding: 7bit (if mc-pgp-comment (setq args (cons (format "+comment=%s" mc-pgp-comment) args)) ) - (message "Signing as %s ..." (car key)) + (message "Signing as %s..." (car key)) (if (mime-mc-process-region start end passwd pgp-path args parser buffer boundary) (progn @@ -142,7 +142,7 @@ Content-Transfer-Encoding: 7bit --[[multipart/signed; protocol=\"application/pgp-signature\"; boundary=\"%s\"; micalg=pgp-md5][7bit]]\n" boundary)) )) - (message "Signing as %s ... Done." (car key)) + (message "Signing as %s...done" (car key)) t) nil))) diff --git a/mime-play.el b/mime-play.el index dad7904..300640d 100644 --- a/mime-play.el +++ b/mime-play.el @@ -472,7 +472,7 @@ It is registered to variable `mime-preview-quitting-method-alist'." (directory (cdr (assoc "directory" cal))) (name (cdr (assoc "name" cal))) (pathname (concat "/anonymous@" site ":" directory))) - (message (concat "Accessing " (expand-file-name name pathname) " ...")) + (message (concat "Accessing " (expand-file-name name pathname) "...")) (funcall mime-raw-dired-function pathname) (goto-char (point-min)) (search-forward name) @@ -482,7 +482,7 @@ It is registered to variable `mime-preview-quitting-method-alist'." (defun mime-view-message/external-url (entity cal) (let ((url (cdr (assoc "url" cal)))) - (message (concat "Accessing " url " ...")) + (message (concat "Accessing " url "...")) (funcall mime-raw-browse-url-function url))) -- 1.7.10.4