]> git.eshelyaron.com Git - emacs.git/commitdiff
(menu-bar-edit-menu): Rename menu item to
authorRichard M. Stallman <rms@gnu.org>
Fri, 2 Jul 1993 21:37:09 +0000 (21:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 2 Jul 1993 21:37:09 +0000 (21:37 +0000)
Choose Next Paste.  Create this item along with all the others.

lisp/menu-bar.el

index fa4352a9e570ef864193cfea58394ab2bdb7534c..6474d04817c32db2bb213afbe5556cf18b937167 100644 (file)
@@ -47,6 +47,8 @@
 
 (define-key menu-bar-edit-menu [fill] '("Fill" . fill-region))
 (define-key menu-bar-edit-menu [clear] '("Clear" . delete-region))
+(define-key menu-bar-edit-menu [choose-selection]
+  '("Choose Next Paste" . mouse-menu-choose-yank))
 (define-key menu-bar-edit-menu [paste] '("Paste" . yank))
 (define-key menu-bar-edit-menu [copy] '("Copy" . kill-ring-save))
 (define-key menu-bar-edit-menu [cut] '("Cut" . kill-region))
@@ -135,10 +137,6 @@ A subsequent \\[yank] yanks the choice just selected."
              (message "The next yank will insert the selected text.")
            (current-kill 0))))))
 (put 'mouse-menu-choose-yank 'menu-enable 'kill-ring)
-
-(define-key-after menu-bar-edit-menu [choose-selection]
-  '("Choose Pasting Selection" . mouse-menu-choose-yank)
-  'paste)
 \f
 (define-key global-map [menu-bar buffer] '("Buffers" . mouse-menu-bar-buffers))