Function: artist-new-fill-item
artist-new-fill-item is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-new-fill-item X Y WIDTH)
Documentation
Create a new item at X, Y, with WIDTH.
This is for use in fill-info in ellipses and circles.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defsubst artist-new-fill-item (x y width)
"Create a new item at X, Y, with WIDTH.
This is for use in fill-info in ellipses and circles."
(let ((new-item (make-vector 3 x)))
(aset new-item 1 y)
(aset new-item 2 width)
new-item))