Function: org-overlay-display

org-overlay-display is a byte-compiled function defined in org-macs.el.gz.

Signature

(org-overlay-display OVL TEXT &optional FACE EVAP)

Documentation

Make overlay OVL display TEXT with face FACE.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
;;; 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)))