emacs-diffs
[Top][All Lists]
Advanced

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

master 6dbef93: Improve help-echo of Undo and Redo menu items


From: Eli Zaretskii
Subject: master 6dbef93: Improve help-echo of Undo and Redo menu items
Date: Fri, 11 Sep 2020 10:14:22 -0400 (EDT)

branch: master
commit 6dbef93048750a5c5402205b383652a0862562df
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Improve help-echo of Undo and Redo menu items
    
    * lisp/menu-bar.el (undo-redo, undo): Improve the wording of
    help-echo strings.
---
 lisp/menu-bar.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 30d86c7..9a93fa6 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -540,7 +540,7 @@
       '(menu-item "Redo" undo-redo
                   :enable (and (not buffer-read-only)
                            (undo--last-change-was-undo-p buffer-undo-list))
-                  :help "Undo last undo"))
+                  :help "Redo last undone edits"))
 
     (bindings--define-key menu [undo]
       '(menu-item "Undo" undo
@@ -549,7 +549,7 @@
                                (if (eq last-command 'undo)
                                    (listp pending-undo-list)
                                  (consp buffer-undo-list)))
-                  :help "Undo last operation"))
+                  :help "Undo last edits"))
 
     menu))
 



reply via email to

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