gnus-sum.el (gnus-summary-hide-all-threads): Add update message every 1000 iterations.

This commit is contained in:
Teodor Zlatanov 2011-05-16 22:05:15 +00:00 committed by Katsumi Yamaoka
parent 31d55be985
commit e594638418
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2011-05-16 Teodor Zlatanov <tzz@lifelogs.com>
* gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
1000 iterations.
2011-05-16 Katsumi Yamaoka <yamaoka@jpl.org>
* nntp.el (nntp-open-connection): Check if process-type is available.

View file

@ -11533,8 +11533,12 @@ will not be hidden."
(interactive)
(save-excursion
(goto-char (point-min))
(let ((end nil))
(let ((end nil)
(count 0))
(while (not end)
(incf count)
(when (zerop (mod count 1000))
(message "Hiding all threads... %d" count))
(when (or (not predicate)
(gnus-map-articles
predicate (gnus-summary-article-children)))