Function: org--set-faces-extend

org--set-faces-extend is a byte-compiled function defined in org-compat.el.gz.

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 /usr/src/emacs/lisp/org/org-compat.el.gz
(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)))