Function: window-live-p
window-live-p is a function defined in window.c.
Signature
(window-live-p OBJECT)
Documentation
Return t if OBJECT is a live window and nil otherwise.
A live window is a window that displays a buffer. Internal windows and deleted windows are not live.
Aliases
edebug-window-live-p (obsolete since 28.1)
Source Code
// Defined in /usr/src/emacs/src/window.c
{
return WINDOW_LIVE_P (object) ? Qt : Qnil;
}