Function: org-highlight-new-match
org-highlight-new-match is a byte-compiled function defined in
org.el.gz.
Signature
(org-highlight-new-match BEG END)
Documentation
Highlight from BEG to END and mark the highlight is an occur headline.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-highlight-new-match (beg end)
"Highlight from BEG to END and mark the highlight is an occur headline."
(let ((ov (make-overlay beg end)))
(overlay-put ov 'face 'secondary-selection)
(overlay-put ov 'org-type 'org-occur)
(push ov org-occur-highlights)))