Function: gnus-group-sort-selected-groups

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

Signature

(gnus-group-sort-selected-groups N FUNC &optional REVERSE)

Documentation

Sort the process/prefixed groups.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
;;; Selected group sorting.

(defun gnus-group-sort-selected-groups (n func &optional reverse)
  "Sort the process/prefixed groups."
  (interactive (list current-prefix-arg gnus-group-sort-function)
	       gnus-group-mode)
  (let ((groups (gnus-group-process-prefix n)))
    (funcall gnus-group-sort-selected-function
	     groups (gnus-make-sort-function func) reverse)
    (gnus-group-unmark-all-groups)
    (gnus-group-list-groups)
    (gnus-dribble-touch)))