Function: artist-save-chars-under-point-list
artist-save-chars-under-point-list is a byte-compiled function defined
in artist.el.gz.
Signature
(artist-save-chars-under-point-list POINT-LIST)
Documentation
Save characters originally under POINT-LIST.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;; artist-save-chars-under-point-list
;; Remembers the chars that were there before we did draw the line.
;; Returns point-list.
;;
(defun artist-save-chars-under-point-list (point-list)
"Save characters originally under POINT-LIST."
(mapcar
(lambda (coord)
(artist-coord-add-saved-char
coord
(artist-get-char-at-xy (artist-coord-get-x coord)
(artist-coord-get-y coord))))
point-list))