aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1994-07-03 20:18:38 +0000
committerRichard M. Stallman1994-07-03 20:18:38 +0000
commitde17da156ffa69a35e89a8aa6eb1828b4feb8817 (patch)
tree43e3438b9b9b8ff08571b125f16907158f444921 /lisp
parentafb7440b5d3e1bcbaa7963afedf26799cb161b86 (diff)
downloademacs-de17da156ffa69a35e89a8aa6eb1828b4feb8817.tar.gz
emacs-de17da156ffa69a35e89a8aa6eb1828b4feb8817.zip
(initial-frame-alist): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/frame.el19
1 files changed, 15 insertions, 4 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 551f35172df..a9ddc592818 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -35,11 +35,22 @@ function, which should take an alist of parameters as its argument.")
35 "Alist of frame parameters for creating the initial X window frame. 35 "Alist of frame parameters for creating the initial X window frame.
36You can set this in your `.emacs' file; for example, 36You can set this in your `.emacs' file; for example,
37 (setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55))) 37 (setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55)))
38If the value calls for a frame without a minibuffer, and you do not create a 38Parameters specified here supersede the values given in `default-frame-alist'.
39minibuffer frame on your own, one is created according to 39
40If the value calls for a frame without a minibuffer, and you have not created
41a minibuffer frame on your own, one is created according to
40`minibuffer-frame-alist'. 42`minibuffer-frame-alist'.
41Parameters specified here supersede the values given in 43
42`default-frame-alist'.") 44You can specify geometry-related options for just the initial frame
45by setting this variable in your `.emacs' file; however, they won't
46take affect until Emacs reads `.emacs', which happens after first creating
47the frame. If you want the frame to have the proper geometry as soon
48as it appears, you need to use this three-step process:
49* Specify X resources to give the geometry you want.
50* Set `default-frame-alist' to override these options so that they
51 don't affect subsequent frames.
52* Set `initial-frame-alist' in a way that matches the X resources,
53 to override what you put in `default-frame-alist'.")
43 54
44(defvar minibuffer-frame-alist '((width . 80) (height . 2)) 55(defvar minibuffer-frame-alist '((width . 80) (height . 2))
45 "Alist of frame parameters for initially creating a minibuffer frame. 56 "Alist of frame parameters for initially creating a minibuffer frame.