Function: artist-coord-set-x

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

Signature

(artist-coord-set-x COORD NEW-X)

Documentation

Set the x component of a COORD to NEW-X.

Source Code

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