Function: org-overlay-display
org-overlay-display is a byte-compiled function defined in
org-macs.el.
Signature
(org-overlay-display 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
;;; Overlays and text properties
(defun org-overlay-display (ovl text &optional face evap)
"Make overlay OVL display TEXT with face FACE."
(overlay-put ovl 'display text)
(when face (overlay-put ovl 'face face))
(when evap (overlay-put ovl 'evaporate t)))