Function: gnus-topic-sort-groups

gnus-topic-sort-groups is an interactive and byte-compiled function defined in gnus-topic.el.gz.

Signature

(gnus-topic-sort-groups FUNC &optional REVERSE)

Documentation

Sort the current topic according to FUNC.

If REVERSE, reverse the sorting order.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-sort-groups (func &optional reverse)
  "Sort the current topic according to FUNC.
If REVERSE, reverse the sorting order."
  (interactive (list gnus-group-sort-function current-prefix-arg)
	       gnus-topic-mode)
  (let ((topic (assoc (gnus-current-topic) gnus-topic-alist)))
    (gnus-topic-sort-topic
     topic (gnus-make-sort-function func) reverse)
    (gnus-group-list-groups)))