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.
This commit is contained in:
parent
a87af185c9
commit
18cfb5a1ea
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-02-20 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* autorevert.el (auto-revert-mode, auto-revert-tail-mode)
|
||||
(global-auto-revert-ignore-buffer): Remove leading "*" from docs.
|
||||
|
||||
2011-02-19 Dmitry Bolshakov <dmitry.bolshakov@bridge-quest.com>
|
||||
Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue