diff options
| author | Jim Blandy <jimb@redhat.com> | 1993-05-18 22:40:43 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@redhat.com> | 1993-05-18 22:40:43 +0000 |
| commit | d202f1f23054561ad6514b2848ebaf67afa4ed3f (patch) | |
| tree | cf64e7e23cf35a8b3bf4024ba435d3a1048730b9 /lisp | |
| parent | 4e1b1e728831625dcea5f8c0b0fe77d48cc970ab (diff) | |
| download | emacs-d202f1f23054561ad6514b2848ebaf67afa4ed3f.tar.gz | |
* frame.el (frame-notice-user-settings): Don't make
frame-initial-frame unbound; just set it to nil.
* startup.el (command-line-1): Call frame-notice-user-settings
before displaying the startup message.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/frame.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 87d7efd17a2..93971344a5a 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -211,7 +211,8 @@ These supercede the values given in `default-frame-alist'.") (set-buffer old-buffer) ;; Make sure the initial frame can be GC'd if it is ever deleted. - (makunbound 'frame-initial-frame))) + ;; Make sure frame-notice-user-settings does nothing if called twice. + (setq frame-initial-frame nil))) ;;;; Creation of additional frames, and other frame miscellanea |
