Function: artist-vap-find-endpoints-vert

artist-vap-find-endpoints-vert is a byte-compiled function defined in artist.el.gz.

Signature

(artist-vap-find-endpoints-vert X Y)

Documentation

Find endpoints for a vertical line through X, Y.

An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y).

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-vap-find-endpoints-vert (x y)
  "Find endpoints for a vertical line through X, Y.
An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)."
  (list (artist-vap-find-endpoint x y 0  1 '(?| ?+) '(?\s))
	(artist-vap-find-endpoint x y 0 -1 '(?| ?+) '(?\s))))