Variable: gnus-registry-default-sort-function

gnus-registry-default-sort-function is a customizable variable defined in gnus-registry.el.gz.

Value

gnus-registry-sort-by-creation-time

Documentation

Sort function to use when pruning the registry.

Entries that sort to the front of the list are pruned first. This can slow pruning down. Set to nil to perform no sorting.

This variable was added, or its default value changed, in Emacs 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-registry.el.gz
(defcustom gnus-registry-default-sort-function
  #'gnus-registry-sort-by-creation-time
  "Sort function to use when pruning the registry.
Entries that sort to the front of the list are pruned first.
This can slow pruning down.  Set to nil to perform no sorting."
  :version "25.1"
  :type '(choice (const :tag "No sorting" nil) function))