Function: artist-make-endpoint
artist-make-endpoint is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-make-endpoint X Y)
Documentation
Create an endpoint at X, Y.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;;
;; functions for accessing endpoints and elements in object requiring
;; 2 endpoints
;;
(defun artist-make-endpoint (x y)
"Create an endpoint at X, Y."
(let ((new-endpoint (make-vector 2 x)))
(aset new-endpoint 1 y)
new-endpoint))