Function: window-new-total

window-new-total is a function defined in window.c.

Signature

(window-new-total &optional WINDOW)

Documentation

Return the new total size of window WINDOW.

WINDOW must be a valid window and defaults to the selected one.

The new total size of WINDOW is the value set by the last call of set-window-new-total for WINDOW. If it is valid, it will be shortly installed as WINDOW's total height (see window-total-height) or total width (see window-total-width).

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  return decode_valid_window (window)->new_total;
}