Function: artist-ellipse-remove-0-fills

artist-ellipse-remove-0-fills is a byte-compiled function defined in artist.el.gz.

Signature

(artist-ellipse-remove-0-fills FILL-INFO)

Documentation

Remove fill-infos from FILL-INFO that fills a zero-width field.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-ellipse-remove-0-fills (fill-info)
  "Remove fill-infos from FILL-INFO that fills a zero-width field."
  (cond ((null fill-info)
	 nil)
	((= 0 (artist-fill-item-get-width (car fill-info)))
	 (artist-ellipse-remove-0-fills (cdr fill-info)))
	(t
	 (append (list (car fill-info))
		 (artist-ellipse-remove-0-fills (cdr fill-info))))))