Function: artist-fill-item-set-width

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

Signature

(artist-fill-item-set-width FILL-ITEM NEW-WIDTH)

Documentation

Set the width component of a FILL-ITEM to NEW-WIDTH.

Source Code

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