Function: occur--targets-start
occur--targets-start is a byte-compiled function defined in
replace.el.gz.
Signature
(occur--targets-start TARGETS)
Documentation
First marker of the occur-target property value TARGETS.
Source Code
;; Defined in /usr/src/emacs/lisp/replace.el.gz
(defun occur--targets-start (targets)
"First marker of the `occur-target' property value TARGETS."
(if (consp targets)
(caar targets)
;; Tolerate an `occur-target' value that is a single marker for
;; compatibility.
targets))