Function: artist-coord-add-new-char

artist-coord-add-new-char is a byte-compiled function defined in artist.el.gz.

Signature

(artist-coord-add-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-add-new-char (coord new-char)
  "Set the new char component of a COORD to NEW-CHAR."
  (aset coord 3 new-char)
  coord)