summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Gjorgjevski <dario.gjorgjevski@gmail.com>2019-05-17 11:46:54 +0200
committerBasil L. Contovounesios <contovob@tcd.ie>2019-05-23 01:14:21 +0100
commite61349c22412c0eaa7c03e08bfb0467a0a79708a (patch)
tree7551afcf7e35e3d91216fa9b832461ec09298bec
parentb0da9151d880f7ae60367a4b3d3ef91209bbd06f (diff)
downloademacs-e61349c22412c0eaa7c03e08bfb0467a0a79708a.tar.gz
Fix customization type of recentf-max-saved-items
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.
-rw-r--r--lisp/recentf.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/recentf.el b/lisp/recentf.el
index 93f9a57094c..4390626ef20 100644
--- a/lisp/recentf.el
+++ b/lisp/recentf.el
@@ -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."