Function: tab-switcher-delete-from-list
tab-switcher-delete-from-list is a byte-compiled function defined in
tab-bar.el.gz.
Signature
(tab-switcher-delete-from-list TAB)
Documentation
Delete the window configuration from the list of tabs.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-switcher-delete-from-list (tab)
"Delete the window configuration from the list of tabs."
(push `((frame . ,(selected-frame))
(index . ,(tab-bar--tab-index tab))
(tab . ,tab))
tab-bar-closed-tabs)
(tab-bar-tabs-set (delq tab (funcall tab-bar-tabs-function))))