Function: max-mini-window-lines

max-mini-window-lines is a byte-compiled function defined in simple.el.gz.

Signature

(max-mini-window-lines &optional FRAME)

Documentation

Compute maximum number of lines for echo area in FRAME.

As defined by max-mini-window-height. FRAME defaults to the selected frame. Result may be a floating-point number, i.e. include a fractional number of lines.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun max-mini-window-lines (&optional frame)
  "Compute maximum number of lines for echo area in FRAME.
As defined by `max-mini-window-height'.  FRAME defaults to the
selected frame.  Result may be a floating-point number,
i.e. include a fractional number of lines."
  (cond ((floatp max-mini-window-height) (* (frame-height frame)
					    max-mini-window-height))
	((integerp max-mini-window-height) max-mini-window-height)
	(t 1)))