From 2ac7e73ec4f72a59d87adc0c431010c03e8b51ea Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 30 Nov 2009 23:39:04 +0000 Subject: [PATCH] * savehist.el (savehist-autosave-interval): Allow setting to nil through customize. (Bug#5056) --- lisp/ChangeLog | 5 +++++ lisp/savehist.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 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 (tiny change) + + * savehist.el (savehist-autosave-interval): Allow setting to nil + through customize. (Bug#5056) + 2009-11-30 Juanma Barranquero 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 -- 2.39.2