Function: window-body-edges

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

Signature

(window-body-edges &optional WINDOW)

Documentation

Return a list of the edge coordinates of WINDOW's body.

The return value is that of window-edges called with argument BODY non-nil.

View in manual

Probably introduced at or before Emacs version 25.1.

Aliases

window-inside-edges

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window-body-edges (&optional window)
  "Return a list of the edge coordinates of WINDOW's body.
The return value is that of `window-edges' called with argument
BODY non-nil."
  (declare (side-effect-free t))
  (window-edges window t))