Function: artist-text-see-thru

artist-text-see-thru is a byte-compiled function defined in artist.el.gz.

Signature

(artist-text-see-thru X Y)

Documentation

Prompt for text to render, render it at X,Y.

This is done by calling the function specified by artist-text-renderer-function, which must return a list of strings, to be inserted in the buffer.

Text already in the buffer "shines thru" blanks in the rendered text.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-text-see-thru (x y)
  "Prompt for text to render, render it at X,Y.
This is done by calling the function specified by
`artist-text-renderer-function', which must return a list of strings,
to be inserted in the buffer.

Text already in the buffer \"shines thru\" blanks in the rendered text."
  (let* ((input-text (read-string "Type text to render: "))
	 (rendered-text (artist-funcall artist-text-renderer-function input-text)))
    (artist-text-insert-see-thru x y rendered-text)))