Mercurial > emacs
changeset 103225:4c27043a65ab
* frame.el (minibuffer-frame-alist): Doc fix (Bug#3276).
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Thu, 14 May 2009 03:50:53 +0000 |
parents | 503993123ddc |
children | 8d1eae3ec9a6 |
files | lisp/ChangeLog lisp/frame.el |
diffstat | 2 files changed, 12 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Thu May 14 03:23:22 2009 +0000 +++ b/lisp/ChangeLog Thu May 14 03:50:53 2009 +0000 @@ -1,3 +1,7 @@ +2009-05-14 Chong Yidong <cyd@stupidchicken.com> + + * frame.el (minibuffer-frame-alist): Doc fix (Bug#3276). + 2009-05-12 Chong Yidong <cyd@stupidchicken.com> * tutorial.el (help-with-tutorial): Don't use text mode, since the
--- a/lisp/frame.el Thu May 14 03:23:22 2009 +0000 +++ b/lisp/frame.el Thu May 14 03:50:53 2009 +0000 @@ -82,14 +82,19 @@ :group 'frames) (defcustom minibuffer-frame-alist '((width . 80) (height . 2)) - "Alist of parameters for initial minibuffer frame. + "Alist of parameters for the initial minibuffer frame. +This is the minibuffer frame created if `initial-frame-alist' +calls for a frame without a minibuffer. The parameters specified +here supersede those given in `default-frame-alist', for the +initial minibuffer frame. + You can set this in your init file; for example, (setq minibuffer-frame-alist '((top . 1) (left . 1) (width . 80) (height . 2))) -Parameters specified here supersede the values given in -`default-frame-alist', for a minibuffer frame." +It is not necessary to include (minibuffer . only); that is +appended when the minibuffer frame is created." :type '(repeat (cons :format "%v" (symbol :tag "Parameter") (sexp :tag "Value")))