mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
(rmail-new-summary-1): Don't show zero count of summary lines.
This commit is contained in:
parent
6af84d777e
commit
435f0dd2f5
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2009-04-04 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* mail/rmailsum.el (rmail-new-summary-1): Don't show zero count of
|
||||
summary lines.
|
||||
|
||||
2009-04-02 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* dired.el (dired-get-filename): Always pass filename through
|
||||
|
|
|
|||
|
|
@ -291,7 +291,8 @@ message."
|
|||
summary-msgs))))
|
||||
(setq msgnum (1+ msgnum))
|
||||
;; Provide a periodic User progress message.
|
||||
(if (zerop (% rmail-new-summary-line-count 10))
|
||||
(if (and (not (zerop rmail-new-summary-line-count))
|
||||
(zerop (% rmail-new-summary-line-count 10)))
|
||||
(message "Computing summary lines...%d"
|
||||
rmail-new-summary-line-count)))
|
||||
(setq summary-msgs (nreverse summary-msgs)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue