Function: artist-key-set-point-1point
artist-key-set-point-1point is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-key-set-point-1point X Y)
Documentation
Set point for current 1-point shape at X,Y.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-key-set-point-1point (x y)
"Set point for current 1-point shape at X,Y."
(let ((init-fn (artist-go-get-init-fn-from-symbol artist-curr-go))
(prep-fill-fn (artist-go-get-prep-fill-fn-from-symbol artist-curr-go))
(exit-fn (artist-go-get-exit-fn-from-symbol artist-curr-go))
(draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go))
(arrow-pred (artist-go-get-arrow-pred-from-symbol artist-curr-go))
(arrow-set-fn (artist-go-get-arrow-set-fn-from-symbol artist-curr-go)))
(artist-funcall init-fn x y)
(artist-funcall draw-fn x y)
(artist-funcall prep-fill-fn x y)
(if (artist-funcall arrow-pred)
(artist-funcall arrow-set-fn x y)
(artist-clear-arrow-points))
(artist-funcall exit-fn x y))
(setq artist-key-shape nil)
(setq artist-key-is-drawing nil))