Function: artist-paste
artist-paste is a byte-compiled function defined in artist.el.gz.
Signature
(artist-paste X Y)
Documentation
Paste the contents of the copy-buffer at X,Y.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-paste (x y)
"Paste the contents of the copy-buffer at X,Y."
(let ((copy-buf (if artist-interface-with-rect
killed-rectangle
artist-copy-buffer)))
(if (not (null copy-buf))
(while (not (null copy-buf))
(artist-move-to-xy x y)
(artist-replace-string (car copy-buf))
(setq copy-buf (cdr copy-buf))
(setq y (1+ y)))
(message "Nothing to paste"))))