Function: tab-line-tab-face-group

tab-line-tab-face-group is a byte-compiled function defined in tab-line.el.gz.

Signature

(tab-line-tab-face-group TAB TABS FACE BUFFER-P SELECTED-P)

Documentation

Return FACE for TAB according to whether it's a group tab.

TAB is either a buffer (if BUFFER-P is non-nil), or an association list with the buffer given by the key buffer. For use in tab-line-tab-face-functions.

Source Code

;; Defined in /usr/src/emacs/lisp/tab-line.el.gz
(defun tab-line-tab-face-group (tab _tabs face _buffer-p _selected-p)
  "Return FACE for TAB according to whether it's a group tab.
TAB is either a buffer (if BUFFER-P is non-nil), or an association
list with the buffer given by the key `buffer'.
For use in `tab-line-tab-face-functions'."
  (when (alist-get 'group-tab tab)
    (setf face `(:inherit (tab-line-tab-group ,face))))
  face)