summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-11-05 02:31:08 +0000
committerRichard M. Stallman <rms@gnu.org>1996-11-05 02:31:08 +0000
commit46700f6ec60057ce17f0fec1c7d88e3771db928b (patch)
treeb634282ce136ff1c9f0224accc6f6bd9881b245b
parent3fb8817ede4246a84474dc893c5e6a9ff566f44c (diff)
downloademacs-46700f6ec60057ce17f0fec1c7d88e3771db928b.tar.gz
(initial-frame-alist): Make default value nil--
don't specify `minibuffer' parameter.
-rw-r--r--lisp/frame.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 7de71ef28fe..c97a6d3ab7f 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -29,10 +29,10 @@
The window system startup file should set this to its frame creation
function, which should take an alist of parameters as its argument.")
-;;; The initial value given here for this must ask for a minibuffer.
-;;; There must always exist a frame with a minibuffer, and after we
-;;; delete the terminal frame, this will be the only frame.
-(defvar initial-frame-alist '((minibuffer . t))
+;;; The initial value given here for used to ask for a minibuffer.
+;;; But that's not necessary, because the default is to have one.
+;;; By not specifying it here, we let an X resource specify it.
+(defvar initial-frame-alist nil
"Alist of frame parameters for creating the initial X window frame.
You can set this in your `.emacs' file; for example,
(setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55)))