Function: recentf-show-basenames-ascending
recentf-show-basenames-ascending is a byte-compiled function defined
in recentf.el.gz.
Signature
(recentf-show-basenames-ascending L)
Documentation
Filter the list of menu elements L to show filenames sans directory.
Filenames are sorted in ascending order.
This filter combines the recentf-sort-basenames-ascending and
recentf-show-basenames filters.
Source Code
;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defsubst recentf-show-basenames-ascending (l)
"Filter the list of menu elements L to show filenames sans directory.
Filenames are sorted in ascending order.
This filter combines the `recentf-sort-basenames-ascending' and
`recentf-show-basenames' filters."
(recentf-show-basenames (recentf-sort-basenames-ascending l)))