Function: window-combination-limit
window-combination-limit is a function defined in window.c.
Signature
(window-combination-limit WINDOW)
Documentation
Return combination limit of window WINDOW.
WINDOW must be a valid window used in horizontal or vertical combination. If the return value is nil, child windows of WINDOW can be recombined with WINDOW's siblings. A return value of t means that child windows of WINDOW are never (re-)combined with WINDOW's siblings.
Probably introduced at or before Emacs version 24.1.
Source Code
// Defined in /usr/src/emacs/src/window.c
{
struct window *w;
CHECK_VALID_WINDOW (window);
w = XWINDOW (window);
if (WINDOW_LEAF_P (w))
error ("Combination limit is meaningful for internal windows only");
return w->combination_limit;
}