Function: artist-fill-item-set-y

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

Signature

(artist-fill-item-set-y FILL-ITEM NEW-Y)

Documentation

Set the y component of a FILL-ITEM to NEW-Y.

Source Code

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