# HG changeset patch # User Andreas Schwab # Date 1076279622 0 # Node ID b213145b283880c19862fdd3421830d3d0d6939c # Parent d95e0ecde26cd98b06bce306495e857fc9e263e5 (rmail-get-new-mail): Remove extra format string arguments. diff -r d95e0ecde26c -r b213145b2838 lisp/mail/rmail.el --- a/lisp/mail/rmail.el Sun Feb 08 22:33:15 2004 +0000 +++ b/lisp/mail/rmail.el Sun Feb 08 22:33:42 2004 +0000 @@ -1,6 +1,6 @@ ;;; rmail.el --- main code of "RMAIL" mail reader for Emacs -;; Copyright (C) 1985,86,87,88,93,94,95,96,97,98,2000, 2001 +;; Copyright (C) 1985,86,87,88,93,94,95,96,97,98,2000, 01, 2004 ;; Free Software Foundation, Inc. ;; Maintainer: FSF @@ -1488,13 +1488,11 @@ ;; 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" - rsf-number-of-spam) + (format ", 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" - rsf-number-of-spam))) + (format ", 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))