diff options
-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)) |