diff options
| author | Chong Yidong | 2009-05-14 03:50:53 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-05-14 03:50:53 +0000 |
| commit | 92e020722342b2abbb1f739d78ea7e692864865f (patch) | |
| tree | 68715efb232c8bfdc2352650829befd0094f381a | |
| parent | e8e1b0c32e54443fa6e63db68550e298b3a78439 (diff) | |
| download | emacs-92e020722342b2abbb1f739d78ea7e692864865f.tar.gz emacs-92e020722342b2abbb1f739d78ea7e692864865f.zip | |
* frame.el (minibuffer-frame-alist): Doc fix (Bug#3276).
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/frame.el | 11 |
2 files changed, 12 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3cf1f41ecec..78f960f1172 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-05-14 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * frame.el (minibuffer-frame-alist): Doc fix (Bug#3276). | ||
| 4 | |||
| 1 | 2009-05-12 Chong Yidong <cyd@stupidchicken.com> | 5 | 2009-05-12 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * tutorial.el (help-with-tutorial): Don't use text mode, since the | 7 | * tutorial.el (help-with-tutorial): Don't use text mode, since the |
diff --git a/lisp/frame.el b/lisp/frame.el index 534f5f86159..d39eb80d3dd 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -82,14 +82,19 @@ use this three-step process: | |||
| 82 | :group 'frames) | 82 | :group 'frames) |
| 83 | 83 | ||
| 84 | (defcustom minibuffer-frame-alist '((width . 80) (height . 2)) | 84 | (defcustom minibuffer-frame-alist '((width . 80) (height . 2)) |
| 85 | "Alist of parameters for initial minibuffer frame. | 85 | "Alist of parameters for the initial minibuffer frame. |
| 86 | This is the minibuffer frame created if `initial-frame-alist' | ||
| 87 | calls for a frame without a minibuffer. The parameters specified | ||
| 88 | here supersede those given in `default-frame-alist', for the | ||
| 89 | initial minibuffer frame. | ||
| 90 | |||
| 86 | You can set this in your init file; for example, | 91 | You can set this in your init file; for example, |
| 87 | 92 | ||
| 88 | (setq minibuffer-frame-alist | 93 | (setq minibuffer-frame-alist |
| 89 | '((top . 1) (left . 1) (width . 80) (height . 2))) | 94 | '((top . 1) (left . 1) (width . 80) (height . 2))) |
| 90 | 95 | ||
| 91 | Parameters specified here supersede the values given in | 96 | It is not necessary to include (minibuffer . only); that is |
| 92 | `default-frame-alist', for a minibuffer frame." | 97 | appended when the minibuffer frame is created." |
| 93 | :type '(repeat (cons :format "%v" | 98 | :type '(repeat (cons :format "%v" |
| 94 | (symbol :tag "Parameter") | 99 | (symbol :tag "Parameter") |
| 95 | (sexp :tag "Value"))) | 100 | (sexp :tag "Value"))) |