changeset 16516:e47c5d7e9c5d

(initial-frame-alist): Make default value nil-- don't specify `minibuffer' parameter.
author Richard M. Stallman <rms@gnu.org>
date Tue, 05 Nov 1996 02:31:08 +0000
parents 18e4e6c705ed
children 1fa5a347e70f
files lisp/frame.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/frame.el	Tue Nov 05 02:15:11 1996 +0000
+++ b/lisp/frame.el	Tue Nov 05 02:31:08 1996 +0000
@@ -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)))