Function: mh-summary-height
mh-summary-height is a byte-compiled function defined in
mh-show.el.gz.
Signature
(mh-summary-height)
Documentation
Return ideal value for the variable mh-summary-height(var)/mh-summary-height(fun).
The current frame height is taken into consideration.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-show.el.gz
(defun mh-summary-height ()
"Return ideal value for the variable `mh-summary-height'.
The current frame height is taken into consideration."
(or (and (> (frame-height) 24)
(min 10 (/ (frame-height) 6)))
4))