diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-11-15 20:34:35 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-11-15 20:34:35 +0000 |
commit | 84932bf6ac9929ea7fd7de58c9b420f2156bd03c (patch) | |
tree | 6249dfe6ae5a7305b61b7d44aff530eeeea44407 /lisp/menu-bar.el | |
parent | 16a2f75ab70c1640e7181f91693032b503197051 (diff) | |
download | emacs-84932bf6ac9929ea7fd7de58c9b420f2156bd03c.tar.gz |
(menu-bar-edit-menu) <copy>: Put an explicit key binding.
Diffstat (limited to 'lisp/menu-bar.el')
-rw-r--r-- | lisp/menu-bar.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 5d169aaea2b..01efd3b6d68 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -407,7 +407,8 @@ A large number or nil slows down menu responsiveness." (define-key menu-bar-edit-menu [copy] '(menu-item "Copy" menu-bar-kill-ring-save :enable mark-active - :help "Copy text in region between mark and current position")) + :help "Copy text in region between mark and current position" + :keys "\\[kill-ring-save]")) (define-key menu-bar-edit-menu [cut] '(menu-item "Cut" kill-region :enable (and mark-active (not buffer-read-only)) |