aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2022-08-21 17:28:14 +0200
committerStefan Kangas2022-08-21 17:28:14 +0200
commit79560aaa51adaa0ec60b3faa68bef4e8167a146f (patch)
tree5b260449f19992dd54ecf9dd80be6bcc04f1cf73
parent6dc61aa69ad68c3cd4857d6d42e44f2b4f9359d8 (diff)
downloademacs-79560aaa51adaa0ec60b3faa68bef4e8167a146f.tar.gz
emacs-79560aaa51adaa0ec60b3faa68bef4e8167a146f.zip
Don't end autorevert message with a period
* lisp/autorevert.el (auto-revert-handler): Don't end message with a period.
-rw-r--r--lisp/autorevert.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/autorevert.el b/lisp/autorevert.el
index 918c0c7f19d..872a896689c 100644
--- a/lisp/autorevert.el
+++ b/lisp/autorevert.el
@@ -800,7 +800,7 @@ This is an internal function used by Auto-Revert Mode."
800 (when revert 800 (when revert
801 (when (and auto-revert-verbose 801 (when (and auto-revert-verbose
802 (not (eq revert 'fast))) 802 (not (eq revert 'fast)))
803 (message "Reverting buffer `%s'." (buffer-name))) 803 (message "Reverting buffer `%s'" (buffer-name)))
804 ;; If point (or a window point) is at the end of the buffer, we 804 ;; If point (or a window point) is at the end of the buffer, we
805 ;; want to keep it at the end after reverting. This allows one 805 ;; want to keep it at the end after reverting. This allows one
806 ;; to tail a file. 806 ;; to tail a file.