From: Andreas Schwab Date: Sun, 8 Feb 2004 22:36:05 +0000 (+0000) Subject: (rmail-get-new-mail): Remove useless use of X-Git-Tag: ttn-vms-21-2-B4~7706 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=527a5746241eaa2879b5daf18159d54198f3fe38;p=emacs.git (rmail-get-new-mail): Remove useless use of format. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 5bd5a11a26c..f95439b0cb2 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -1488,11 +1488,11 @@ It returns t if it got any new messages." ;; print out a message on number of spam messages found: (if (and rmail-use-spam-filter (> rsf-number-of-spam 0)) (if (= 1 new-messages) - (format ", and found to be a spam message") + ", and found to be a spam message" (if (> rsf-number-of-spam 1) (format ", %d of which found to be spam messages" rsf-number-of-spam) - (format ", one of which found to be a spam message"))) + ", one of which found to be a spam message")) "")) (if (and rmail-use-spam-filter (> rsf-number-of-spam 0)) (progn (if rmail-spam-filter-beep (beep t))