Function: artist-fill-item-set-x

artist-fill-item-set-x is a byte-compiled function defined in artist.el.gz.

Signature

(artist-fill-item-set-x FILL-ITEM NEW-X)

Documentation

Set the x component of a FILL-ITEM to NEW-X.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defsubst artist-fill-item-set-x (fill-item new-x)
  "Set the x component of a FILL-ITEM to NEW-X."
  (aset fill-item 0 new-x)
  fill-item)