Function: artist-pen-reset-last-xy
artist-pen-reset-last-xy is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-pen-reset-last-xy X1 Y1)
Documentation
Reset the last x and y points to X1, Y1 when doing pen-drawing.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-pen-reset-last-xy (x1 y1)
"Reset the last x and y points to X1, Y1 when doing pen-drawing."
(artist-clear-arrow-points)
(setq artist-key-poly-point-list (list (cons x1 y1))))