mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-13 01:20:28 -08:00
* savehist.el (savehist-autosave-interval): Allow setting to nil
through customize. (Bug#5056)
This commit is contained in:
parent
5237d741a8
commit
2ac7e73ec4
2 changed files with 7 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue