Variable: tab-line-close-button
tab-line-close-button is a variable defined in tab-line.el.gz.
Value
#(" x" 0 2
(help-echo "Click to close tab" mouse-face tab-line-close-highlight keymap
(keymap
(tab-line keymap
(mouse-2 . tab-line-close-tab)
(mouse-1 . tab-line-close-tab)))
display
(image :type xpm :file "tabs/close.xpm" :margin
(2 . 0)
:ascent center)))
Documentation
Button for closing the clicked tab.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-line.el.gz
(defvar tab-line-close-button
(propertize " x"
'display '(image :type xpm
:file "tabs/close.xpm"
:margin (2 . 0)
:ascent center)
'keymap tab-line-tab-close-map
'mouse-face 'tab-line-close-highlight
'help-echo "Click to close tab")
"Button for closing the clicked tab.")