aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-09-02 13:19:33 +0000
committerEli Zaretskii2001-09-02 13:19:33 +0000
commit19bd58e821bcba8e8bf9d5042478d6d85555bd6e (patch)
treef7223ab288effb6cd2012df74baebaaeb8c9461f
parent567e961e9ff78c1ef13f6890bb1b2a332115aac4 (diff)
downloademacs-19bd58e821bcba8e8bf9d5042478d6d85555bd6e.tar.gz
emacs-19bd58e821bcba8e8bf9d5042478d6d85555bd6e.zip
(menu-bar-edit-menu) <yank-menu, yank>: Mention
"yank" in the help-echo text. Suggested by Pavel Janik <Pavel@Janik.cz>.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/menu-bar.el4
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8ef46c40bef..099da8d1dc5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12001-09-02 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>: Mention
4 "yank" in the help-echo text. Suggested by Pavel Jan,Bm(Bk
5 <Pavel@Janik.cz>.
6
12001-08-31 Eli Zaretskii <eliz@is.elta.co.il> 72001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
2 8
3 * mail/emacsbug.el (report-emacs-bug): Make sure *Messages* 9 * mail/emacsbug.el (report-emacs-bug): Make sure *Messages*
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 74d0a0b8d22..bfcf44985d5 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -394,11 +394,11 @@ A large number or nil slows down menu responsiveness."
394(define-key menu-bar-edit-menu [select-paste] 394(define-key menu-bar-edit-menu [select-paste]
395 '(menu-item "Select and Paste" yank-menu 395 '(menu-item "Select and Paste" yank-menu
396 :enable (and (cdr yank-menu) (not buffer-read-only)) 396 :enable (and (cdr yank-menu) (not buffer-read-only))
397 :help "Paste text cut/copied earlier")) 397 :help "Paste (yank) text cut or copied earlier"))
398(define-key menu-bar-edit-menu [paste] 398(define-key menu-bar-edit-menu [paste]
399 '(menu-item "Paste" yank 399 '(menu-item "Paste" yank
400 :enable (and (x-selection-exists-p) (not buffer-read-only)) 400 :enable (and (x-selection-exists-p) (not buffer-read-only))
401 :help "Paste text most recently cut/copied")) 401 :help "Paste (yank) text most recently cut/copied"))
402(define-key menu-bar-edit-menu [copy] 402(define-key menu-bar-edit-menu [copy]
403 '(menu-item "Copy" menu-bar-kill-ring-save 403 '(menu-item "Copy" menu-bar-kill-ring-save
404 :enable mark-active 404 :enable mark-active