diff options
author | Eli Zaretskii <eliz@gnu.org> | 2006-02-11 16:18:02 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2006-02-11 16:18:02 +0000 |
commit | 5fb64ecc5b92d890e3a066188c9c4097712ba33b (patch) | |
tree | b558baae78828b11eee5d2fb97b0a4d146a6a397 | |
parent | 8ee320fc76cd5d425fdd1f16845a5486b0b8afcc (diff) | |
download | emacs-5fb64ecc5b92d890e3a066188c9c4097712ba33b.tar.gz |
(menu-bar-select-yank): Add a doc string.
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/menu-bar.el | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9faa1ab01d8..e8076374547 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2006-02-11 Eli Zaretskii <eliz@gnu.org> + * menu-bar.el (menu-bar-select-yank): Add a doc string. + * help.el (describe-key-briefly): Now a wrapper for describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons to t. Populate yank-menu if empty. diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 9e2184eba1b..0ec4339f822 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -1502,6 +1502,8 @@ for the definition of the menu frame." (put 'menu-bar-select-yank 'apropos-inhibit t) (defun menu-bar-select-yank () + "Insert the stretch of previously-killed text selected from menu. +The menu shows all the killed text sequences stored in `kill-ring'." (interactive "*") (push-mark (point)) (insert last-command-event)) |