Function: org-find-text-property-in-string
org-find-text-property-in-string is a byte-compiled function defined
in org-macs.el.gz.
Signature
(org-find-text-property-in-string PROP S)
Documentation
Return the first non-nil value of property PROP in string S.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-find-text-property-in-string (prop s)
"Return the first non-nil value of property PROP in string S."
(or (get-text-property 0 prop s)
(get-text-property (or (next-single-property-change 0 prop s) 0)
prop s)))