Function: menu-bar-select-yank

menu-bar-select-yank is an interactive and byte-compiled function defined in menu-bar.el.gz.

Signature

(menu-bar-select-yank)

Documentation

Insert the stretch of previously-killed text selected from menu.

The menu shows all the killed text sequences stored in kill-ring.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/menu-bar.el.gz
(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)
  (insert last-command-event))