Function: artist-compute-line-char
artist-compute-line-char is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-compute-line-char)
Documentation
Compute which character to use for lines, if any.
Return value is either nil for the default characters that make up lines, or
a character chosen depending on the variables artist-borderless-shapes,
artist-fill-char-set, artist-fill-char and
artist-line-char-set and artist-line-char.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;; Computing the line-char to use
;; for use with borderless shapes
;;
(defsubst artist-compute-line-char ()
"Compute which character to use for lines, if any.
Return value is either nil for the default characters that make up lines, or
a character chosen depending on the variables `artist-borderless-shapes',
`artist-fill-char-set', `artist-fill-char' and
`artist-line-char-set' and `artist-line-char'."
(if (and artist-borderless-shapes artist-fill-char-set)
artist-fill-char
(if artist-line-char-set
artist-line-char
nil)))