Function: artist-no-rb-unset-point2
artist-no-rb-unset-point2 is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-no-rb-unset-point2)
Documentation
This function unsets point 2 when not rubber-banding.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-no-rb-unset-point2 ()
"This function unsets point 2 when not rubber-banding."
(if (= (aref artist-rb-save-data 6) 1)
(let ((x-now (artist-current-column))
(y-now (artist-current-line))
(x (aref artist-rb-save-data 3))
(y (aref artist-rb-save-data 4)))
(artist-move-to-xy x y)
(artist-replace-char (aref artist-rb-save-data 5))
(artist-move-to-xy x-now y-now))))