Variable: recentf-max-saved-items

recentf-max-saved-items is a customizable variable defined in recentf.el.gz.

Value

25

Documentation

Maximum number of items of the recent list that will be saved.

A nil value means to save the whole list. See the command recentf-save-list.

This variable was added, or its default value changed, in Emacs 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defcustom recentf-max-saved-items 25
  "Maximum number of items of the recent list that will be saved.
A nil value means to save the whole list.
See the command `recentf-save-list'."
  :group 'recentf
  :type '(choice (natnum :tag "Entries")
		 (const :tag "No Limit" nil))
  :version "31.1")