Function: window--resize-reset

window--resize-reset is a byte-compiled function defined in window.el.gz.

Signature

(window--resize-reset &optional FRAME HORIZONTAL)

Documentation

Reset resize values for all windows on FRAME.

FRAME defaults to the selected frame.

This function stores the current value of window-size applied with argument HORIZONTAL in the new total size of all windows on FRAME. It also resets the new normal size of each of these windows.

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window--resize-reset (&optional frame horizontal)
  "Reset resize values for all windows on FRAME.
FRAME defaults to the selected frame.

This function stores the current value of `window-size' applied
with argument HORIZONTAL in the new total size of all windows on
FRAME.  It also resets the new normal size of each of these
windows."
  (window--resize-reset-1
   (frame-root-window (window-normalize-frame frame)) horizontal))