Function: visual-wrap--face-extend-p
visual-wrap--face-extend-p is a byte-compiled function defined in
visual-wrap.el.gz.
Signature
(visual-wrap--face-extend-p FACE)
Source Code
;; Defined in /usr/src/emacs/lisp/visual-wrap.el.gz
(defun visual-wrap--face-extend-p (face)
;; Before Emacs 27, faces always extended beyond EOL, so we check
;; for a non-default background instead.
(cond
((listp face)
(plist-get face (if (fboundp 'face-extend-p) :extend :background)))
((symbolp face)
(if (fboundp 'face-extend-p)
(face-extend-p face nil t)
(face-background face nil t)))))