Function: tab-bar--reusable-frames
tab-bar--reusable-frames is a byte-compiled function defined in
tab-bar.el.gz.
Signature
(tab-bar--reusable-frames ALL-FRAMES)
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-bar--reusable-frames (all-frames)
(cond
((eq all-frames t) (frame-list))
((eq all-frames 'visible) (visible-frame-list))
((framep all-frames) (list all-frames))
(t (list (selected-frame)))))