From: Eli Zaretskii Date: Fri, 11 Sep 2020 14:13:44 +0000 (+0300) Subject: Improve help-echo of Undo and Redo menu items X-Git-Tag: emacs-28.0.90~6122 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6dbef93048750a5c5402205b383652a0862562df;p=emacs.git Improve help-echo of Undo and Redo menu items * lisp/menu-bar.el (undo-redo, undo): Improve the wording of help-echo strings. --- diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 30d86c7f17a..9a93fa60d72 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))