Function: window-new-pixel
window-new-pixel is a function defined in window.c.
Signature
(window-new-pixel &optional WINDOW)
Documentation
Return new pixel size of window WINDOW.
WINDOW must be a valid window and defaults to the selected one.
The new pixel size of WINDOW is the value set by the last call of
set-window-new-pixel for WINDOW. If it is valid, it will be shortly
installed as WINDOW's pixel height (see window-pixel-height) or pixel
width (see window-pixel-width).
Source Code
// Defined in /usr/src/emacs/src/window.c
{
return decode_valid_window (window)->new_pixel;
}