Function: frame-inner-height
frame-inner-height is a byte-compiled function defined in frame.el.gz.
Signature
(frame-inner-height &optional FRAME)
Documentation
Return inner height of FRAME in pixels.
FRAME defaults to the selected frame.
Source Code
;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defun frame-inner-height (&optional frame)
"Return inner height of FRAME in pixels.
FRAME defaults to the selected frame."
(setq frame (window-normalize-frame frame))
(- (frame-native-height frame)
(if (fboundp 'tab-bar-height) (tab-bar-height frame t) 0)
(* 2 (frame-internal-border-width frame))))