aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-14 09:31:42 +0000
committerRichard M. Stallman1994-04-14 09:31:42 +0000
commit853ccbd574fb398b9e62a6d85db3220f99b3eb3c (patch)
treee068aa1f4390f47fa2db2490111301f9f96ffd6d
parent586ab698cf75c114c85db9ae1534d24ed177a309 (diff)
downloademacs-853ccbd574fb398b9e62a6d85db3220f99b3eb3c.tar.gz
emacs-853ccbd574fb398b9e62a6d85db3220f99b3eb3c.zip
(command-line): Call face-initialize before frame-initialize.
-rw-r--r--lisp/startup.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index 2742984888c..36a7ee9c1ee 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -241,10 +241,10 @@ this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.")
241 (setcdr command-line-args args)) 241 (setcdr command-line-args args))
242 242
243 ;; Under X Windows, this creates the X frame and deletes the terminal frame. 243 ;; Under X Windows, this creates the X frame and deletes the terminal frame.
244 (if (fboundp 'frame-initialize)
245 (frame-initialize))
246 (if (fboundp 'face-initialize) 244 (if (fboundp 'face-initialize)
247 (face-initialize)) 245 (face-initialize))
246 (if (fboundp 'frame-initialize)
247 (frame-initialize))
248 248
249 (run-hooks 'before-init-hook) 249 (run-hooks 'before-init-hook)
250 250