Variable: mh-summary-height

mh-summary-height is a customizable variable defined in mh-e.el.gz.

Value

nil

Documentation

Number of lines in MH-Folder buffer (including the mode line).

The default value of this option is "Automatic" which means that the MH-Folder buffer will maintain the same proportional size if the frame is resized. If you'd prefer a fixed height, then choose the "Fixed Size" option and enter the number of lines you'd like to see.

This variable was added, or its default value changed, in MH-E version
7.4.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom mh-summary-height nil
  "Number of lines in MH-Folder buffer (including the mode line).

The default value of this option is \"Automatic\" which means
that the MH-Folder buffer will maintain the same proportional
size if the frame is resized. If you'd prefer a fixed height,
then choose the \"Fixed Size\" option and enter the number of
lines you'd like to see."
  :type '(choice (const :tag "Automatic" nil)
                 (integer :tag "Fixed Size"))
  :group 'mh-show
  :package-version '(MH-E . "7.4"))