diff options
| author | Andreas Schwab | 2004-02-08 22:36:05 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2004-02-08 22:36:05 +0000 |
| commit | 527a5746241eaa2879b5daf18159d54198f3fe38 (patch) | |
| tree | fc9c6553f2a3e5132f2a99e2dcfa589657383064 | |
| parent | f39a98f4450e7291fd30b71b52228880f5619133 (diff) | |
| download | emacs-527a5746241eaa2879b5daf18159d54198f3fe38.tar.gz emacs-527a5746241eaa2879b5daf18159d54198f3fe38.zip | |
(rmail-get-new-mail): Remove useless use of
format.
| -rw-r--r-- | lisp/mail/rmail.el | 4 |
1 files changed, 2 insertions, 2 deletions
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." | |||
| 1488 | ;; print out a message on number of spam messages found: | 1488 | ;; print out a message on number of spam messages found: |
| 1489 | (if (and rmail-use-spam-filter (> rsf-number-of-spam 0)) | 1489 | (if (and rmail-use-spam-filter (> rsf-number-of-spam 0)) |
| 1490 | (if (= 1 new-messages) | 1490 | (if (= 1 new-messages) |
| 1491 | (format ", and found to be a spam message") | 1491 | ", and found to be a spam message" |
| 1492 | (if (> rsf-number-of-spam 1) | 1492 | (if (> rsf-number-of-spam 1) |
| 1493 | (format ", %d of which found to be spam messages" | 1493 | (format ", %d of which found to be spam messages" |
| 1494 | rsf-number-of-spam) | 1494 | rsf-number-of-spam) |
| 1495 | (format ", one of which found to be a spam message"))) | 1495 | ", one of which found to be a spam message")) |
| 1496 | "")) | 1496 | "")) |
| 1497 | (if (and rmail-use-spam-filter (> rsf-number-of-spam 0)) | 1497 | (if (and rmail-use-spam-filter (> rsf-number-of-spam 0)) |
| 1498 | (progn (if rmail-spam-filter-beep (beep t)) | 1498 | (progn (if rmail-spam-filter-beep (beep t)) |