diff options
author | Eli Zaretskii <eliz@gnu.org> | 2020-06-25 22:27:19 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2020-06-25 22:27:19 +0300 |
commit | e2d796f374c23c9f7c09d9f8208584a546b92540 (patch) | |
tree | 581a9e90e8fbdd1e167cbbbc52ee96f803ead4b3 /lisp | |
parent | 1c6dc3a96c12439a2b6298af217e42634ec066f6 (diff) | |
download | emacs-e2d796f374c23c9f7c09d9f8208584a546b92540.tar.gz |
Fix last change
* lisp/menu-bar.el (menu-bar-describe-menu): Improve the wording
and the help-echo of the new list-recent-keystrokes Help menu
item. (Bug#41933)
* etc/NEWS: Call out the new menu item.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/menu-bar.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 30a35b0aa7f..bc094c9050d 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -1816,8 +1816,9 @@ mail status in mode line")) '(menu-item "List Key Bindings" describe-bindings :help "Display all current key bindings (keyboard shortcuts)")) (bindings--define-key menu [list-recent-keystrokes] - '(menu-item "Show Recent Keys" view-lossage - :help "Display last few input keystrokes and the commands run")) + '(menu-item "Show Recent Inputs" view-lossage + :help "Display last few input events and the commands \ +they ran")) (bindings--define-key menu [describe-current-display-table] '(menu-item "Describe Display Table" describe-current-display-table :help "Describe the current display table")) |