Function: artist-undraw-ellipse

artist-undraw-ellipse is a byte-compiled function defined in artist.el.gz.

Signature

(artist-undraw-ellipse ELLIPSE)

Documentation

Undraw ELLIPSE.

Aliases

artist-undraw-circle

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-undraw-ellipse (ellipse)
  "Undraw ELLIPSE."
  (if ellipse
      (let ((point-list (aref (artist-2point-get-shapeinfo ellipse) 0)))
	(mapcar
	 (lambda (coord)
	   (artist-move-to-xy (artist-coord-get-x coord)
			      (artist-coord-get-y coord))
	   (artist-replace-char (artist-coord-get-saved-char coord))
	   coord)
	 point-list))))