Function: picture-yank-at-click

picture-yank-at-click is an interactive and byte-compiled function defined in picture.el.gz.

Signature

(picture-yank-at-click CLICK ARG)

Documentation

Insert the last killed rectangle at the position clicked on.

Also move point to one end of the text thus inserted (normally the end). Prefix arguments are interpreted as with C-y (yank). If mouse-yank-at-point is non-nil, insert at point regardless of where you click.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/picture.el.gz
(defun picture-yank-at-click (click arg)
  "Insert the last killed rectangle at the position clicked on.
Also move point to one end of the text thus inserted (normally the end).
Prefix arguments are interpreted as with \\[yank].
If `mouse-yank-at-point' is non-nil, insert at point
regardless of where you click."
  (interactive "e\nP")
  (or mouse-yank-at-point (mouse-set-point click))
  (picture-yank-rectangle arg))