Function: artist-select-line-char
artist-select-line-char is an interactive and byte-compiled function
defined in artist.el.gz.
Signature
(artist-select-line-char C)
Documentation
Set current line character to be C.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-select-line-char (c)
"Set current line character to be C."
(interactive "cType line char (type RET to turn off): ")
(cond ((eq c ?\r) (setq artist-line-char-set nil)
(message "Normal lines"))
(t (setq artist-line-char-set t)
(setq artist-line-char c)
(message "Line drawn with \"%c\"" c)))
(if artist-key-is-drawing
(artist-key-do-continuously-common)))