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