Function: gnus-group-sort-selected-groups-by-score

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

Signature

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

Documentation

Sort the group buffer by group score.

Obeys the process/prefix convention. If REVERSE (the symbolic prefix), sort in reverse order.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-sort-selected-groups-by-score (&optional n reverse)
  "Sort the group buffer by group score.
Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
sort in reverse order."
  (interactive (gnus-interactive "P\ny") gnus-group-mode)
  (gnus-group-sort-selected-groups n 'gnus-group-sort-by-score reverse))