emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 9b24a79: Fix typos in doc strings


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-26 9b24a79: Fix typos in doc strings
Date: Thu, 5 Apr 2018 14:39:13 -0400 (EDT)

branch: emacs-26
commit 9b24a7937a6b47b6a51f0dba19651c4ba9ce11fe
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix typos in doc strings
    
    * lisp/simple.el (undo-auto--boundary-timer)
    (undo-auto--boundary-ensure-timer): Fix typos in doc strings.
---
 lisp/simple.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/simple.el b/lisp/simple.el
index d8abeb3..0113156 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -2968,12 +2968,12 @@ REASON describes the reason that the boundary is being 
added; see
   (setq undo-auto--undoably-changed-buffers nil))
 
 (defun undo-auto--boundary-timer ()
-  "Timer which will run `undo--auto-boundary-timer'."
+  "Timer function run by `undo-auto-current-boundary-timer'."
   (setq undo-auto-current-boundary-timer nil)
   (undo-auto--boundaries 'timer))
 
 (defun undo-auto--boundary-ensure-timer ()
-  "Ensure that the `undo-auto-boundary-timer' is set."
+  "Ensure that the `undo-auto-current-boundary-timer' is set."
   (unless undo-auto-current-boundary-timer
     (setq undo-auto-current-boundary-timer
           (run-at-time 10 nil #'undo-auto--boundary-timer))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]