Function: window-tab-line-height
window-tab-line-height is a function defined in window.c.
Signature
(window-tab-line-height &optional WINDOW)
Documentation
Return the height in pixels of WINDOW's tab-line.
WINDOW must be a live window and defaults to the selected one.
Source Code
// Defined in /usr/src/emacs/src/window.c
{
return make_fixnum (WINDOW_TAB_LINE_HEIGHT (decode_live_window (window)));
}