aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2020-09-18 22:50:36 +0300
committerEli Zaretskii2020-09-18 22:50:36 +0300
commit759399cdb1d74d282e02725f4e6769566b145e1f (patch)
treeb5b755ec803f3ea7133db25629c068cbfa9380d2 /src
parent3223302aa2294d0e2a68216e84e3ee2d4ebcbee1 (diff)
downloademacs-759399cdb1d74d282e02725f4e6769566b145e1f.tar.gz
emacs-759399cdb1d74d282e02725f4e6769566b145e1f.zip
Improve documentation of 'max-mini-window-height'
* src/xdisp.c (syms_of_xdisp): * doc/lispref/minibuf.texi (Minibuffer Windows): More accurate wording in the documentation of 'max-mini-window-height', to clarify the meaning of an integer value.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index ad0ab9987d8..d191ef51700 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -34830,8 +34830,10 @@ but does not change the fact they are interpreted as raw bytes. */);
34830 34830
34831 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height, 34831 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height,
34832 doc: /* Maximum height for resizing mini-windows (the minibuffer and the echo area). 34832 doc: /* Maximum height for resizing mini-windows (the minibuffer and the echo area).
34833If a float, it specifies a fraction of the mini-window frame's height. 34833If a float, it specifies the maximum height in units of the
34834If an integer, it specifies a number of lines. */); 34834mini-window frame's height.
34835If an integer, it specifies the maximum height in units of the
34836mini-window frame's default font's height. */);
34835 Vmax_mini_window_height = make_float (0.25); 34837 Vmax_mini_window_height = make_float (0.25);
34836 34838
34837 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows, 34839 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows,