Function: window-new-normal

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

Signature

(window-new-normal &optional WINDOW)

Documentation

Return new normal size of window WINDOW.

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

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

Source Code

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