gnus-sum.el (gnus-summary-hide-all-threads): Add update message every 1000 iterations.
This commit is contained in:
parent
31d55be985
commit
e594638418
2 changed files with 10 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue