Function: artist-erase-rect
artist-erase-rect is a byte-compiled function defined in artist.el.gz.
Signature
(artist-erase-rect RECT X1 Y1 X2 Y2)
Documentation
Erase rectangle RECT from X1, Y1, X2, Y2.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-erase-rect (rect x1 y1 x2 y2)
"Erase rectangle RECT from X1, Y1, X2, Y2."
(let ((artist-line-char-set t)
(artist-fill-char-set t)
(artist-line-char artist-erase-char)
(artist-fill-char artist-erase-char))
(artist-draw-rect x1 y1 x2 y2)
(artist-fill-rect rect x1 y1 x2 y2)))