Function: artist-coord-set-new-char
artist-coord-set-new-char is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-coord-set-new-char COORD NEW-CHAR)
Documentation
Set the new char component of a COORD to NEW-CHAR.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defsubst artist-coord-set-new-char (coord new-char)
"Set the new char component of a COORD to NEW-CHAR."
(aset coord 3 new-char)
coord)