Function: tab-bar-tab-name-format-face
tab-bar-tab-name-format-face is a byte-compiled function defined in
tab-bar.el.gz.
Signature
(tab-bar-tab-name-format-face NAME TAB I)
Documentation
Apply the face to the tab name.
It uses the function tab-bar-tab-face-function.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-bar-tab-name-format-face (name tab _i)
"Apply the face to the tab name.
It uses the function `tab-bar-tab-face-function'."
(add-face-text-property
0 (length name) (funcall tab-bar-tab-face-function tab) t name)
name)