diff options
| author | Richard M. Stallman | 1996-11-05 02:31:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-11-05 02:31:08 +0000 |
| commit | 216f116990d070b4390d8346d69cdeea0805e5ed (patch) | |
| tree | 5c9cf212d437ba039d340f9bc0a68fd52148805d /lisp | |
| parent | 050d63b5c8222d4fa2309a98bcc6a291259b2e34 (diff) | |
| download | emacs-216f116990d070b4390d8346d69cdeea0805e5ed.tar.gz emacs-216f116990d070b4390d8346d69cdeea0805e5ed.zip | |
(initial-frame-alist): Make default value nil--
don't specify `minibuffer' parameter.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/frame.el | 8 |
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 @@ | |||
| 29 | The window system startup file should set this to its frame creation | 29 | The window system startup file should set this to its frame creation |
| 30 | function, which should take an alist of parameters as its argument.") | 30 | function, which should take an alist of parameters as its argument.") |
| 31 | 31 | ||
| 32 | ;;; The initial value given here for this must ask for a minibuffer. | 32 | ;;; The initial value given here for used to ask for a minibuffer. |
| 33 | ;;; There must always exist a frame with a minibuffer, and after we | 33 | ;;; But that's not necessary, because the default is to have one. |
| 34 | ;;; delete the terminal frame, this will be the only frame. | 34 | ;;; By not specifying it here, we let an X resource specify it. |
| 35 | (defvar initial-frame-alist '((minibuffer . t)) | 35 | (defvar initial-frame-alist nil |
| 36 | "Alist of frame parameters for creating the initial X window frame. | 36 | "Alist of frame parameters for creating the initial X window frame. |
| 37 | You can set this in your `.emacs' file; for example, | 37 | You can set this in your `.emacs' file; for example, |
| 38 | (setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55))) | 38 | (setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55))) |