Function: recentf-sort-descending

recentf-sort-descending is a byte-compiled function defined in recentf.el.gz.

Signature

(recentf-sort-descending L)

Documentation

Sort the list of menu elements L in descending order.

The MENU-ITEM part of each menu element is compared.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defun recentf-sort-descending (l)
  "Sort the list of menu elements L in descending order.
The MENU-ITEM part of each menu element is compared."
  (sort (copy-sequence l)
        (lambda (e1 e2)
          (recentf-string-lessp
           (recentf-menu-element-item e2)
           (recentf-menu-element-item e1)))))