Function: artist-select-fill-char
artist-select-fill-char is an interactive and byte-compiled function
defined in artist.el.gz.
Signature
(artist-select-fill-char C)
Documentation
Set current fill character to be C.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-select-fill-char (c)
"Set current fill character to be C."
(interactive "cType fill char (type RET to turn off): ")
(cond ((eq c ?\r) (setq artist-fill-char-set nil)
(message "Fill canceled"))
(t (setq artist-fill-char-set t)
(setq artist-fill-char c)
(message "Fill set to \"%c\"" c))))