summaryrefslogtreecommitdiff
path: root/lisp/autorevert.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2011-02-19 16:09:28 -0800
committerGlenn Morris <rgm@gnu.org>2011-02-19 16:09:28 -0800
commit18cfb5a1eaf92c9768b5399a1b1eaa734d0408e5 (patch)
treeccb844d4614e19493a55fcbcebff27aa83c330e9 /lisp/autorevert.el
parenta87af185c9dd68d60d5ba9076b25586a3afd0f18 (diff)
downloademacs-18cfb5a1eaf92c9768b5399a1b1eaa734d0408e5.tar.gz
emacs-18cfb5a1eaf92c9768b5399a1b1eaa734d0408e5.tar.bz2
emacs-18cfb5a1eaf92c9768b5399a1b1eaa734d0408e5.zip
autorevert.el trivia.
* lisp/autorevert.el (auto-revert-mode, auto-revert-tail-mode) (global-auto-revert-ignore-buffer): Remove leading "*" from docs. It makes zero sense to use it with these variables.
Diffstat (limited to 'lisp/autorevert.el')
-rw-r--r--lisp/autorevert.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/autorevert.el b/lisp/autorevert.el
index 0000e29f458..2bc7310d7e5 100644
--- a/lisp/autorevert.el
+++ b/lisp/autorevert.el
@@ -116,12 +116,12 @@ Global Auto-Revert Mode applies to all buffers."
;;; What's this?: ;; Autoload for the benefit of `make-mode-line-mouse-sensitive'.
;;; What's this?: ;;;###autoload
(defvar auto-revert-mode nil
- "*Non-nil when Auto-Revert Mode is active.
+ "Non-nil when Auto-Revert Mode is active.
Never set this variable directly, use the command `auto-revert-mode' instead.")
(put 'auto-revert-mode 'permanent-local t)
(defvar auto-revert-tail-mode nil
- "*Non-nil when Auto-Revert Tail Mode is active.
+ "Non-nil when Auto-Revert Tail Mode is active.
Never set this variable directly, use the command
`auto-revert-tail-mode' instead.")
(put 'auto-revert-tail-mode 'permanent-local t)
@@ -254,8 +254,7 @@ buffers. CPU usage depends on the version control system."
:version "22.1")
(defvar global-auto-revert-ignore-buffer nil
- "*When non-nil, Global Auto-Revert Mode will not revert this buffer.
-
+ "When non-nil, Global Auto-Revert Mode will not revert this buffer.
This variable becomes buffer local when set in any fashion.")
(make-variable-buffer-local 'global-auto-revert-ignore-buffer)