Function: artist-put-pixel

artist-put-pixel is a macro defined in artist.el.gz.

Signature

(artist-put-pixel POINT-LIST X Y)

Documentation

In POINT-LIST, store a "pixel" at coord X,Y.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;; Pretend we are plotting a pixel. Instead we just list it
;;
(defmacro artist-put-pixel (point-list x y)
  "In POINT-LIST, store a \"pixel\" at coord X,Y."
  `(setq ,point-list
	 (append ,point-list (list (artist-new-coord ,x ,y)))))