Function: recentf-arrange-by-dir

recentf-arrange-by-dir is a byte-compiled function defined in recentf.el.gz.

Signature

(recentf-arrange-by-dir L)

Documentation

Split the list of menu-elements L into sub-menus by directory.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defun recentf-arrange-by-dir (l)
  "Split the list of menu-elements L into sub-menus by directory."
  (let ((recentf-arrange-rules '((recentf-dir-rule . ".*")))
        (recentf-arrange-by-rule-subfilter 'recentf-file-name-nondir)
        recentf-arrange-by-rule-others)
    (recentf-arrange-by-rule l)))