Function: artist-coord-set-y

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

Signature

(artist-coord-set-y COORD NEW-Y)

Documentation

Set the y component of a COORD to NEW-Y.

Source Code

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