Function: org--set-faces-extend
org--set-faces-extend is a byte-compiled function defined in
org-compat.el.
Signature
(org--set-faces-extend FACES EXTEND-P)
Documentation
Set the :extend attribute of FACES to EXTEND-P.
This is a no-op for Emacs versions lower than 27, since face extension beyond end of line was not controllable.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
(defun org--set-faces-extend (faces extend-p)
"Set the :extend attribute of FACES to EXTEND-P.
This is a no-op for Emacs versions lower than 27, since face
extension beyond end of line was not controllable."
(when (fboundp 'set-face-extend)
(mapc (lambda (f) (set-face-extend f extend-p)) faces)))