Function: gnus-sort-subthreads-recursive
gnus-sort-subthreads-recursive is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-sort-subthreads-recursive THREADS FUNC)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-sort-subthreads-recursive (threads func)
;; Responsible for sorting subthreads.
(sort (mapcar (lambda (thread)
(cons (car thread)
(and (cdr thread)
(gnus-sort-subthreads-recursive (cdr thread) func))))
threads)
func))