]> git.eshelyaron.com Git - emacs.git/commitdiff
(menu-bar-edit-menu) <copy>: Put an explicit key binding.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 15 Nov 2001 20:34:35 +0000 (20:34 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 15 Nov 2001 20:34:35 +0000 (20:34 +0000)
lisp/ChangeLog
lisp/menu-bar.el

index 8cf3e4d16a674954458f0ed3e52e77d3f21dcf30..78d33adce86474132d5e6ba9583b9bdd53326684 100644 (file)
@@ -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>
 
index 5d169aaea2b6fb53f8a29345683fa7fd2a5ba082..01efd3b6d681827e42a1ab354f951e2b04ebfc74 100644 (file)
@@ -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))