aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/startup.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index da88df9e8e1..10777d018e1 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -147,6 +147,7 @@ directory name of the directory where the `.emacs' file was looked for.")
147 (run-hooks 'emacs-startup-hook) 147 (run-hooks 'emacs-startup-hook)
148 (and term-setup-hook 148 (and term-setup-hook
149 (run-hooks 'term-setup-hook)) 149 (run-hooks 'term-setup-hook))
150 (frame-notice-user-settings)
150 (and window-setup-hook 151 (and window-setup-hook
151 (run-hooks 'window-setup-hook))))) 152 (run-hooks 'window-setup-hook)))))
152 153
@@ -212,6 +213,11 @@ directory name of the directory where the `.emacs' file was looked for.")
212 ;; Re-attach the program name to the front of the arg list. 213 ;; Re-attach the program name to the front of the arg list.
213 (setcdr command-line-args args)) 214 (setcdr command-line-args args))
214 215
216 ;; Under X Windows, this creates the X frame and deletes the terminal frame.
217 (frame-initialize)
218
219 (face-initialize)
220
215 (run-hooks 'before-init-hook) 221 (run-hooks 'before-init-hook)
216 222
217 ;; Run the site-start library if it exists. The point of this file is 223 ;; Run the site-start library if it exists. The point of this file is