]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix customization type of recentf-max-saved-items
authorDario Gjorgjevski <dario.gjorgjevski@gmail.com>
Fri, 17 May 2019 09:46:54 +0000 (11:46 +0200)
committerBasil L. Contovounesios <contovob@tcd.ie>
Thu, 23 May 2019 00:14:21 +0000 (01:14 +0100)
Change the customization type of recentf-max-saved-items to include
nil, as it is an allowed value (Bug#35771).
* lisp/recentf.el (recentf-max-saved-items): Change the customization
type in the defcustom.

lisp/recentf.el

index 93f9a57094c914aebe17dcb23d2ee576db9e6024..4390626ef205a0ccd6eee309791493b363750daa 100644 (file)
@@ -67,7 +67,8 @@ You should define the options of your own filters in this group."
 A nil value means to save the whole list.
 See the command `recentf-save-list'."
   :group 'recentf
-  :type 'integer)
+  :type '(choice (integer :tag "Entries" :value 1)
+                (const :tag "No Limit" nil)))
 
 (defcustom recentf-save-file (locate-user-emacs-file "recentf" ".recentf")
   "File to save the recent list into."