Function: artist-copy-rect

artist-copy-rect is a byte-compiled function defined in artist.el.gz.

Signature

(artist-copy-rect RECT X1 Y1 X2 Y2)

Documentation

Copy rectangle RECT drawn from X1, Y1 to X2, Y2.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-copy-rect (rect x1 y1 x2 y2)
  "Copy rectangle RECT drawn from X1, Y1 to X2, Y2."
  (artist-undraw-rect rect)
  (artist-copy-generic x1 y1 x2 y2))