Function: org-overlay-before-string

org-overlay-before-string is a byte-compiled function defined in org-macs.el.

Signature

(org-overlay-before-string OVL TEXT &optional FACE EVAP)

Documentation

Make overlay OVL display TEXT with face FACE.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-overlay-before-string (ovl text &optional face evap)
  "Make overlay OVL display TEXT with face FACE."
  (when face (org-add-props text nil 'face face))
  (overlay-put ovl 'before-string text)
  (when evap (overlay-put ovl 'evaporate t)))