Function: tab-line--get-tab-property
tab-line--get-tab-property is a byte-compiled function defined in
tab-line.el.gz.
Signature
(tab-line--get-tab-property PROP STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/tab-line.el.gz
(defun tab-line--get-tab-property (prop string)
(or (get-pos-property 1 prop string) ;; for most cases of 1-char separator
(get-pos-property 0 prop string) ;; for empty separator
(let ((pos (next-single-property-change 0 prop string))) ;; long separator
(and pos (get-pos-property pos prop string)))))