]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve help-echo of Undo and Redo menu items
authorEli Zaretskii <eliz@gnu.org>
Fri, 11 Sep 2020 14:13:44 +0000 (17:13 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 11 Sep 2020 14:13:44 +0000 (17:13 +0300)
* lisp/menu-bar.el (undo-redo, undo): Improve the wording of
help-echo strings.

lisp/menu-bar.el

index 30d86c7f17a03dbc79ffecbd20b03ce02f2526c5..9a93fa60d729dd3f3268f88a4d0e177618205081 100644 (file)
       '(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
                                (if (eq last-command 'undo)
                                    (listp pending-undo-list)
                                  (consp buffer-undo-list)))
-                  :help "Undo last operation"))
+                  :help "Undo last edits"))
 
     menu))