Function: recentf-elements

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

Signature

(recentf-elements N)

Documentation

Return a list of the first N elements of the recent list.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defsubst recentf-elements (n)
  "Return a list of the first N elements of the recent list."
  (seq-take recentf-list n))