diff options
author | Martin Rudalics <rudalics@gmx.at> | 2014-12-25 14:13:26 +0100 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2014-12-25 14:13:26 +0100 |
commit | 000bc54951fc2c8f502176755fca53ca2b8aa9a4 (patch) | |
tree | 4edeaf2f351b10c30ba4f358ffacdfd298ef0019 /lisp/cus-start.el | |
parent | 437854dc5d9a6146b7095392e750112819b7e8a6 (diff) | |
download | emacs-000bc54951fc2c8f502176755fca53ca2b8aa9a4.tar.gz |
Make `resize-mini-windows' customizable and update documentation for it.
* cus-start.el (resize-mini-windows): Make it customizable.
* minibuf.texi (Minibuffer Windows): Add descriptions of
`resize-mini-windows' and `max-mini-window-height'.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 4049974841e..5394a1c3744 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -520,7 +520,12 @@ since it could result in memory overflow and make Emacs crash." (const :tag "Hourglass" :value hourglass))) (display-hourglass cursor boolean) (hourglass-delay cursor number) - + (resize-mini-windows + windows (choice + (const :tag "Off (nil)" :value nil) + (const :tag "Fit (t)" :value t) + (const :tag "Grow only" :value grow-only)) + "25.1") ;; xfaces.c (scalable-fonts-allowed display boolean "22.1") ;; xfns.c |