Function: window--check

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

Signature

(window--check &optional FRAME)

Documentation

Check atomic and side windows on FRAME.

FRAME defaults to the selected frame.

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window--check (&optional frame)
  "Check atomic and side windows on FRAME.
FRAME defaults to the selected frame."
  (window--sides-check frame)
  (window--atom-check frame))