diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-14 08:43:18 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-16 19:37:07 +0200 |
commit | 63f419f1339cbd0a7d1e64586854a4f01b3f80d1 (patch) | |
tree | 80bce487ec8c4f7d8258d13a49b21cb4eb3f289b /lisp/autorevert.el | |
parent | 36474a1e490a5eae266805a0e04615741d56692c (diff) | |
download | emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.tar.gz emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.tar.bz2 emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.zip |
; Minor stylistic fixes found by checkdoc
Diffstat (limited to 'lisp/autorevert.el')
-rw-r--r-- | lisp/autorevert.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/autorevert.el b/lisp/autorevert.el index 9197eadf225..c8fe205946c 100644 --- a/lisp/autorevert.el +++ b/lisp/autorevert.el @@ -36,7 +36,7 @@ ;; buffer contains no unsaved changes. ;; ;; Auto-Revert Mode can be activated for individual buffers. Global -;; Auto-Revert Mode applies to all file buffers. (If the user option +;; Auto-Revert Mode applies to all file buffers. (If the user option ;; `global-auto-revert-non-file-buffers' is non-nil, it also applies ;; to some non-file buffers. This option is disabled by default.) ;; @@ -72,7 +72,7 @@ ;; at the end of the buffer in that window, even if the window is not ;; selected. This way, you can use Auto-Revert Mode to `tail' a file. ;; Just put point at the end of the buffer and it will stay there. -;; These rules apply to file buffers. For non-file buffers, the +;; These rules apply to file buffers. For non-file buffers, the ;; behavior may be mode dependent. ;; ;; While you can use Auto-Revert Mode to tail a file, this package @@ -853,8 +853,8 @@ This is an internal function used by Auto-Revert Mode." "Return a prioritized list of buffers to maybe auto-revert. The differences between this return value and the reference variable `auto-revert-buffer-list' include: 1) this has more -entries when in global-auto-revert-mode; 2) this prioritizes -buffers not reverted last time due to user interruption. " +entries when in `global-auto-revert-mode'; 2) this prioritizes +buffers not reverted last time due to user interruption." (let ((bufs (delq nil ;; Buffers with remote contents shall be reverted only ;; if the connection is established already. @@ -881,7 +881,7 @@ buffers not reverted last time due to user interruption. " (nreverse (nconc new remaining)))) (defun auto-revert-buffer (buf) - "Revert a single buffer. + "Revert a single buffer BUF. This is performed as specified by Auto-Revert and Global Auto-Revert Modes." |