Function: window-min-pixel-size
window-min-pixel-size is a byte-compiled function defined in
window.el.gz.
Signature
(window-min-pixel-size &optional WINDOW HORIZONTAL)
Documentation
Return the minimum pixel height of WINDOW.
Optional argument HORIZONTAL non-nil means return the minimum pixel width of WINDOW.
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window-min-pixel-size (&optional window horizontal)
"Return the minimum pixel height of WINDOW.
Optional argument HORIZONTAL non-nil means return the minimum
pixel width of WINDOW."
(if horizontal
(window-min-pixel-width window)
(window-min-pixel-height window)))