(menu-bar-edit-menu) <copy>: Put an explicit key binding.
This commit is contained in:
parent
16a2f75ab7
commit
84932bf6ac
2 changed files with 11 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
|
||||
|
||||
* menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
|
||||
|
||||
2001-11-15 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* dired.el (dired-undo): Display a message to explain
|
||||
|
@ -5,11 +9,11 @@
|
|||
|
||||
2001-11-15 David Kastrup <David.Kastrup@t-online.de>
|
||||
|
||||
* mouse-drag.el: (mouse-drag-throw) Push back non-drag events
|
||||
into `unread-command-events' instead of trying keymap
|
||||
lookups ourselves. This makes mouse-clicks do the right
|
||||
thing even when keymaps of overlays are involved.
|
||||
(mouse-drag-drag) Likewise.
|
||||
* mouse-drag.el (mouse-drag-throw): Push back non-drag events
|
||||
into `unread-command-events' instead of trying keymap
|
||||
lookups ourselves. This makes mouse-clicks do the right
|
||||
thing even when keymaps of overlays are involved.
|
||||
(mouse-drag-drag): Likewise.
|
||||
|
||||
2001-11-15 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue