Function: gnus-registry-sort-by-creation-time
gnus-registry-sort-by-creation-time is a byte-compiled function
defined in gnus-registry.el.gz.
Signature
(gnus-registry-sort-by-creation-time L R)
Documentation
Sort older entries to front of list.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-registry.el.gz
(defun gnus-registry-sort-by-creation-time (l r)
"Sort older entries to front of list."
;; Pruning starts from the front of the list.
(time-less-p
(cadr (assq 'creation-time r))
(cadr (assq 'creation-time l))))