Mercurial > emacs
changeset 4025:92cd14c9ea80
(mouse-menu-choose-yank): Change menu title to "Choose Next Yank".
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Wed, 07 Jul 1993 19:58:54 +0000 |
parents | b9f3b023e5c9 |
children | 7b72e141f1ad |
files | lisp/menu-bar.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/menu-bar.el Wed Jul 07 19:07:54 1993 +0000 +++ b/lisp/menu-bar.el Wed Jul 07 19:58:54 1993 +0000 @@ -47,7 +47,7 @@ (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] +(define-key menu-bar-edit-menu [choose-next-paste] '("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)) @@ -126,7 +126,7 @@ kill-ring)) (arg (x-popup-menu event (list "Yank Menu" - (cons "Pick Selection" menu))))) + (cons "Choose Next Yank" menu))))) ;; A mouse click outside the menu returns nil. ;; Avoid a confusing error from passing nil to rotate-yank-pointer. ;; XXX should this perhaps do something other than simply return? -rm