aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-05-14 03:50:53 +0000
committerChong Yidong2009-05-14 03:50:53 +0000
commit92e020722342b2abbb1f739d78ea7e692864865f (patch)
tree68715efb232c8bfdc2352650829befd0094f381a
parente8e1b0c32e54443fa6e63db68550e298b3a78439 (diff)
downloademacs-92e020722342b2abbb1f739d78ea7e692864865f.tar.gz
emacs-92e020722342b2abbb1f739d78ea7e692864865f.zip
* frame.el (minibuffer-frame-alist): Doc fix (Bug#3276).
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/frame.el11
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 @@
12009-05-14 Chong Yidong <cyd@stupidchicken.com>
2
3 * frame.el (minibuffer-frame-alist): Doc fix (Bug#3276).
4
12009-05-12 Chong Yidong <cyd@stupidchicken.com> 52009-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.
86This is the minibuffer frame created if `initial-frame-alist'
87calls for a frame without a minibuffer. The parameters specified
88here supersede those given in `default-frame-alist', for the
89initial minibuffer frame.
90
86You can set this in your init file; for example, 91You 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
91Parameters specified here supersede the values given in 96It is not necessary to include (minibuffer . only); that is
92`default-frame-alist', for a minibuffer frame." 97appended 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")))