[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] emacs-26 35b56a2: ; Auto-commit of loaddefs files.
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] emacs-26 35b56a2: ; Auto-commit of loaddefs files. |
Date: |
Mon, 1 Oct 2018 06:23:20 -0400 (EDT) |
branch: emacs-26
commit 35b56a24a09792a0e966f861aa01c07ed1826a82
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>
; Auto-commit of loaddefs files.
---
lisp/ldefs-boot.el | 31 +++++++++++++++++++++++++------
1 file changed, 25 insertions(+), 6 deletions(-)
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 2ff94d3..a9ea741 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -28927,13 +28927,30 @@ or call the function `savehist-mode'.")
(autoload 'savehist-mode "savehist" "\
Toggle saving of minibuffer history (Savehist mode).
With a prefix argument ARG, enable Savehist mode if ARG is
-positive, and disable it otherwise. If called from Lisp, enable
-the mode if ARG is omitted or nil.
+positive, and disable it otherwise. If called from Lisp,
+also enable the mode if ARG is omitted or nil.
When Savehist mode is enabled, minibuffer history is saved
-periodically and when exiting Emacs. When Savehist mode is
-enabled for the first time in an Emacs session, it loads the
-previous minibuffer history from `savehist-file'.
+to `savehist-file' periodically and when exiting Emacs. When
+Savehist mode is enabled for the first time in an Emacs session,
+it loads the previous minibuffer histories from `savehist-file'.
+The variable `savehist-autosave-interval' controls the
+periodicity of saving minibuffer histories.
+
+If `savehist-save-minibuffer-history' is non-nil (the default),
+all recorded minibuffer histories will be saved. You can arrange
+for additional history variables to be saved and restored by
+customizing `savehist-additional-variables', which by default is
+an empty list. For example, to save the history of commands
+invoked via \\[execute-extended-command], add `command-history' to the list in
+`savehist-additional-variables'.
+
+Alternatively, you could customize `savehist-save-minibuffer-history'
+to nil, and add to `savehist-additional-variables' only those
+history variables you want to save.
+
+To ignore some history variables, add their symbols to the list
+in `savehist-ignored-variables'.
This mode should normally be turned on from your Emacs init file.
Calling it at any other time replaces your current minibuffer
@@ -33666,8 +33683,10 @@ Return the number at point, or nil if none is found.
(autoload 'list-at-point "thingatpt" "\
Return the Lisp list at point, or nil if none is found.
+If IGNORE-COMMENT-OR-STRING is non-nil comments and strings are
+treated as white space.
-\(fn)" nil nil)
+\(fn &optional IGNORE-COMMENT-OR-STRING)" nil nil)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes
"thingatpt" '("form-at-point" "thing-at-point-" "sentence-at-point"
"word-at-point" "in-string-p" "end-of-thing" "beginning-of-thing")))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] emacs-26 35b56a2: ; Auto-commit of loaddefs files.,
Glenn Morris <=