changeset 14341:2fcbb7422170

(mh-get-new-mail): Delete format call inside message.
author Karl Heuer <kwzh@gnu.org>
date Thu, 25 Jan 1996 01:02:59 +0000
parents bf1d862f3673
children 942b8cf37599
files lisp/mail/mh-e.el
diffstat 1 files changed, 7 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/mh-e.el	Thu Jan 25 01:02:43 1996 +0000
+++ b/lisp/mail/mh-e.el	Thu Jan 25 01:02:59 1996 +0000
@@ -60,7 +60,7 @@
 ;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985.
 ;; Rewritten for GNU Emacs, James Larus 1985.  larus@ginger.berkeley.edu
 ;; Modified by Stephen Gildea 1988.  gildea@lcs.mit.edu
-(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.10 1996/01/04 23:45:17 kwzh Exp erik $")
+(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.12 1996/01/20 02:47:33 erik Exp kwzh $")
 
 ;;; Code:
 
@@ -865,9 +865,9 @@
 	(folder mh-current-folder)
 	(new-mail-p nil))
     (with-mh-folder-updating (t)
-      (message (if maildrop-name
-		   (format "inc %s -file %s..." folder maildrop-name)
-		   (format "inc %s..." folder)))
+      (if maildrop-name
+	  (message "inc %s -file %s..." folder maildrop-name)
+	(message "inc %s..." folder))
       (setq mh-next-direction 'forward)
       (goto-char (point-max))
       (let ((start-of-inc (point)))
@@ -880,10 +880,9 @@
 				"-truncate")
 	    (mh-exec-cmd-output mh-inc-prog nil
 				"-width" (window-width)))
-	(message
-	 (if maildrop-name
-	     (format "inc %s -file %s...done" folder maildrop-name)
-	     (format "inc %s...done" folder)))
+	(if maildrop-name
+	    (message "inc %s -file %s...done" folder maildrop-name)
+	  (message "inc %s...done" folder))
 	(goto-char start-of-inc)
 	(cond ((save-excursion
 		 (re-search-forward "^inc: no mail" nil t))