Function: window-body-pixel-edges
window-body-pixel-edges is a byte-compiled function defined in
window.el.gz.
Signature
(window-body-pixel-edges &optional WINDOW)
Documentation
Return a list of the edge pixel coordinates of WINDOW's body.
The return value is that of window-edges called with arguments
BODY and PIXELWISE non-nil.
Probably introduced at or before Emacs version 25.1.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window-body-pixel-edges (&optional window)
"Return a list of the edge pixel coordinates of WINDOW's body.
The return value is that of `window-edges' called with arguments
BODY and PIXELWISE non-nil."
(window-edges window t nil t))