diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/savehist.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 66710ac75ec..e8fd70568be 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-11-30 Ryan C. Thompson <rct@thompsonclan.org> (tiny change) + + * savehist.el (savehist-autosave-interval): Allow setting to nil + through customize. (Bug#5056) + 2009-11-30 Juanma Barranquero <lekktu@gmail.com> Fix references to jit-lock properties. diff --git a/lisp/savehist.el b/lisp/savehist.el index 8dd308610ac..20db8da23c9 100644 --- a/lisp/savehist.el +++ b/lisp/savehist.el @@ -120,7 +120,8 @@ the user's privacy." (defcustom savehist-autosave-interval (* 5 60) "The interval between autosaves of minibuffer history. If set to nil, disables timer-based autosaving." - :type 'integer + :type '(choice (const :tag "Disabled" nil) + (integer :tag "Seconds")) :group 'savehist) (defcustom savehist-mode-hook nil |