Function: gnus-group-sort-topic

gnus-group-sort-topic is a byte-compiled function defined in gnus-topic.el.gz.

Signature

(gnus-group-sort-topic FUNC REVERSE)

Documentation

Sort groups in the topics according to FUNC and REVERSE.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-group-sort-topic (func reverse)
  "Sort groups in the topics according to FUNC and REVERSE."
  (let ((alist gnus-topic-alist))
    (while alist
      ;; !!!Sometimes nil elements sneak into the alist,
      ;; for some reason or other.
      (setcar alist (delq nil (car alist)))
      (setcar alist (delete "dummy.group" (car alist)))
      (gnus-topic-sort-topic (pop alist) func reverse))))