[gnus git] branch master updated: n0-17-43-g5fae237 =1= * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every 1000 iterations.
Ted Zlatanov <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 5fae237f9de60011b45ae21271329b556f4e5f08 (commit)
from 559f09a8d6d4f34dbce9a6fcd22b7cb29ec2665a (commit)
- Log -----------------------------------------------------------------
commit 5fae237f9de60011b45ae21271329b556f4e5f08
Author: Ted Zlatanov <[email protected]>
Date: Mon May 16 15:21:22 2011 -0500
* gnus-sum.el (gnus-summary-hide-all-threads): Add update message every 1000 iterations.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b537375..3c1d94c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-05-16 Teodor Zlatanov <[email protected]>
+
+ * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
+ 1000 iterations.
+
2011-05-16 Katsumi Yamaoka <[email protected]>
* nntp.el (nntp-open-connection): Check if process-type is available.
diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el
index 3cbb479..53c2e5e 100644
--- a/lisp/gnus-sum.el
+++ b/lisp/gnus-sum.el
@@ -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)))
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/gnus-sum.el | 6 +++++-
2 files changed, 10 insertions(+), 1 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project