aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/mail/rmailsum.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el
index 971e504dcd1..f161664d964 100644
--- a/lisp/mail/rmailsum.el
+++ b/lisp/mail/rmailsum.el
@@ -410,10 +410,10 @@ already ticked in ENCOUNTERED-MSGS."
410 (lambda (msg) 410 (lambda (msg)
411 (rmail-summary--walk-thread-message-recursively 411 (rmail-summary--walk-thread-message-recursively
412 msg encountered-msgs)))) 412 msg encountered-msgs))))
413 (mapcar walk-thread-msg 413 (mapc walk-thread-msg
414 (aref rmail-summary-message-parents-vector msgnum)) 414 (aref rmail-summary-message-parents-vector msgnum))
415 (mapcar walk-thread-msg 415 (mapc walk-thread-msg
416 (rmail-summary-direct-descendants msgnum encountered-msgs))))) 416 (rmail-summary-direct-descendants msgnum encountered-msgs)))))
417 417
418;;;###autoload 418;;;###autoload
419(defun rmail-summary-by-thread (&optional msgnum) 419(defun rmail-summary-by-thread (&optional msgnum)