From: yamaoka Date: Mon, 11 Nov 2002 05:15:27 +0000 (+0000) Subject: Synch with the semi-1_14 branch. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=refs%2Fheads%2Fremi-1_14;p=elisp%2Fsemi.git Synch with the semi-1_14 branch. --- diff --git a/mime-edit.el b/mime-edit.el index b88be20..ff58d41 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -1601,7 +1601,7 @@ Optional DELIMITER specifies parameter delimiter (';' by default)." (defun mime-prompt-for-parameter (parameter) "Ask for PARAMETER. -Parameter must be '(PROMPT CHOICE1 (CHOISE2 ...))." +Parameter must be '(PROMPT CHOICE1 (CHOICE2...))." (let* ((prompt (car parameter)) (choices (mapcar (function (lambda (e) @@ -2673,7 +2673,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 @@ -2691,7 +2691,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 e43b872..777f831 100644 --- a/mime-play.el +++ b/mime-play.el @@ -474,7 +474,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) @@ -484,7 +484,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)))