Function: artist-no-rb-unset-point1
artist-no-rb-unset-point1 is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-no-rb-unset-point1)
Documentation
Unsets point 1 when not rubber-banding.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;;
;; Routines for setting and unsetting points
;; Used when not rubber-banding
;;
(defun artist-no-rb-unset-point1 ()
"Unsets point 1 when not rubber-banding."
(let ((x-now (artist-current-column))
(y-now (artist-current-line))
(x (aref artist-rb-save-data 0))
(y (aref artist-rb-save-data 1)))
(artist-move-to-xy x y)
(artist-replace-char (aref artist-rb-save-data 2))
(artist-move-to-xy x-now y-now)))