Don't inloop gnus-uu-mark-thread on the last thread
* lisp/gnus/gnus-uu.el (gnus-uu-mark-thread): Don't infloop on the final thread in the summary buffer (bug#16666).
This commit is contained in:
parent
51c77a27f1
commit
cc419fb599
1 changed files with 2 additions and 2 deletions
|
@ -641,9 +641,9 @@ When called interactively, prompt for REGEXP."
|
|||
(interactive)
|
||||
(gnus-save-hidden-threads
|
||||
(let ((level (gnus-summary-thread-level)))
|
||||
(while (and (gnus-summary-set-process-mark
|
||||
(gnus-summary-article-number))
|
||||
(while (and (gnus-summary-set-process-mark (gnus-summary-article-number))
|
||||
(zerop (forward-line 1))
|
||||
(not (eobp))
|
||||
(> (gnus-summary-thread-level) level)))))
|
||||
(gnus-summary-position-point))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue