Use "Operating...done" convention for the message according to the Emacs
authoryoichi <yoichi>
Mon, 11 Nov 2002 04:39:54 +0000 (04:39 +0000)
committeryoichi <yoichi>
Mon, 11 Nov 2002 04:39:54 +0000 (04:39 +0000)
Lisp Reference Manual.

mime-edit.el
mime-image.el
mime-mc.el
mime-play.el

index 1bd2e3d..e920e16 100644 (file)
@@ -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))
        )
       )))
index 76c2335..70347b0 100644 (file)
       (save-excursion
        (mime-image-insert image)
        (insert "\n")
-       (message "Decoding image... done")))))
+       (message "Decoding image...done")))))
 
 ;;; @ end
 ;;;
index 7e5cb26..a9f1ebc 100644 (file)
@@ -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)))
 
index dad7904..300640d 100644 (file)
@@ -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)))