]> git.eshelyaron.com Git - emacs.git/commitdiff
(command-line): Call face-initialize before frame-initialize.
authorRichard M. Stallman <rms@gnu.org>
Thu, 14 Apr 1994 09:31:42 +0000 (09:31 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 14 Apr 1994 09:31:42 +0000 (09:31 +0000)
lisp/startup.el

index 2742984888c55f9ea0ed9ef29d3deb9271b82fb4..36a7ee9c1eef749bd2050cabc4d609b9a3907cba 100644 (file)
@@ -241,10 +241,10 @@ this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.")
     (setcdr command-line-args args))
 
   ;; Under X Windows, this creates the X frame and deletes the terminal frame.
-  (if (fboundp 'frame-initialize)
-      (frame-initialize))
   (if (fboundp 'face-initialize)
       (face-initialize))
+  (if (fboundp 'frame-initialize)
+      (frame-initialize))
 
   (run-hooks 'before-init-hook)