Function: tab-line-tab-face-inactive-alternating
tab-line-tab-face-inactive-alternating is a byte-compiled function
defined in tab-line.el.gz.
Signature
(tab-line-tab-face-inactive-alternating TAB TABS FACE BUFFER-P SELECTED-P)
Documentation
Return FACE for TAB in TABS with alternation.
SELECTED-P nil means TAB is not the selected tab.
When TAB is not selected and is even-numbered, make FACE
inherit from tab-line-tab-inactive-alternate. 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-inactive-alternating (tab tabs face _buffer-p selected-p)
"Return FACE for TAB in TABS with alternation.
SELECTED-P nil means TAB is not the selected tab.
When TAB is not selected and is even-numbered, make FACE
inherit from `tab-line-tab-inactive-alternate'. For use in
`tab-line-tab-face-functions'."
(when (and (not selected-p) (cl-evenp (cl-position tab tabs)))
(setf face `(:inherit (tab-line-tab-inactive-alternate ,face))))
face)