Function: recentf-sort-directories-descending
recentf-sort-directories-descending is a byte-compiled function
defined in recentf.el.gz.
Signature
(recentf-sort-directories-descending L)
Documentation
Sort the list of menu elements L in descending order.
Compares directories then filenames to order the list.
Source Code
;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defsubst recentf-sort-directories-descending (l)
"Sort the list of menu elements L in descending order.
Compares directories then filenames to order the list."
(sort (copy-sequence l)
#'(lambda (e1 e2)
(recentf-directory-compare
(recentf-menu-element-value e2)
(recentf-menu-element-value e1)))))