diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-10-25 00:46:25 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-10-25 00:46:25 +0000 |
commit | ea6c930a8dd83a4e7d7a640c02e8a791458178c0 (patch) | |
tree | 4e9593e3fb14876a5de7c3e3e3ff6efb11c6a2f2 /lisp/savehist.el | |
parent | ba28670836a63cf39032990e8a7f17147e9b3f30 (diff) | |
download | emacs-ea6c930a8dd83a4e7d7a640c02e8a791458178c0.tar.gz |
* completion.el (add-completion-to-head, add-completion): Doc fixes.
(completion-search-next, add-completions-from-file):
Fix typos in docstrings.
* filesets.el (filesets-menu-ensure-use-cached)
(filesets-ingroup-patterns, filesets-filetype-property):
* tutorial.el (get-lang-string):
* play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score):
Fix typos in docstrings.
* image-dired.el (image-dired-dired-after-readin-hook): Doc fix.
(image-dired-line-up-method, image-dired-thumb-size)
(image-dired-cmd-write-exif-data-options, image-dired-write-tags)
(image-dired-track-original-file, image-dired-track-thumbnail)
(image-dired-dired-next-line, image-dired-dired-previous-line)
(image-dired-write-comments): Reflow docstrings.
(image-dired-show-all-from-dir-max-files)
(image-dired-format-properties-string, image-dired-create-thumbs)
(image-dired-mark-tagged-files, image-dired-gallery-generate):
Fix typos in docstrings.
* savehist.el (savehist-save-minibuffer-history, savehist-file)
(savehist-additional-variables, savehist-ignored-variables)
(savehist-file-modes, savehist-autosave-interval):
* startup.el (inhibit-startup-echo-area-message, inhibit-default-init)
(inhibit-startup-buffer-menu, mail-host-address, user-mail-address)
(fancy-splash-image):
* thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief)
(thumbs-conversion-program, thumbs-margin):
Remove spurious * in docstrings.
Diffstat (limited to 'lisp/savehist.el')
-rw-r--r-- | lisp/savehist.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/savehist.el b/lisp/savehist.el index 55a724452db..47c68551e5f 100644 --- a/lisp/savehist.el +++ b/lisp/savehist.el @@ -69,14 +69,14 @@ interface." :group 'savehist) (defcustom savehist-save-minibuffer-history t - "*If non-nil, save all recorded minibuffer histories. + "If non-nil, save all recorded minibuffer histories. If you want to save only specific histories, use `savehist-save-hook' to modify the value of `savehist-minibuffer-history-variables'." :type 'boolean :group 'savehist) (defcustom savehist-additional-variables () - "*List of additional variables to save. + "List of additional variables to save. Each element is a symbol whose value will be persisted across Emacs sessions that use savehist. The contents of variables should be printable with the Lisp printer. You don't need to add minibuffer @@ -91,13 +91,13 @@ minibuffer histories, such as `compile-command' or `kill-ring'." :group 'savehist) (defcustom savehist-ignored-variables nil ;; '(command-history) - "*List of additional variables not to save." + "List of additional variables not to save." :type '(repeat variable) :group 'savehist) (defcustom savehist-file (locate-user-emacs-file "history" ".emacs-history") - "*File name where minibuffer history is saved to and loaded from. + "File name where minibuffer history is saved to and loaded from. The minibuffer history is a series of Lisp expressions loaded automatically when `savehist-mode' is turned on. See `savehist-mode' for more details. @@ -109,7 +109,7 @@ set to a coding system that exists in both emacsen." :group 'savehist) (defcustom savehist-file-modes #o600 - "*Default permissions of the history file. + "Default permissions of the history file. This is decimal, not octal. The default is 384 (0600 in octal). Set to nil to use the default permissions that Emacs uses, typically mandated by umask. The default is a bit more restrictive to protect @@ -118,7 +118,7 @@ the user's privacy." :group 'savehist) (defcustom savehist-autosave-interval (* 5 60) - "*The interval between autosaves of minibuffer history. + "The interval between autosaves of minibuffer history. If set to nil, disables timer-based autosaving." :type 'integer :group 'savehist) |