# HG changeset patch # User Richard M. Stallman # Date 766315902 0 # Node ID 12dcd89cfd88480e098bc3e227f55d6578b64497 # Parent 086e14489073774fbce1a89a34237436c668274a (command-line): Call face-initialize before frame-initialize. diff -r 086e14489073 -r 12dcd89cfd88 lisp/startup.el --- a/lisp/startup.el Thu Apr 14 09:31:18 1994 +0000 +++ b/lisp/startup.el Thu Apr 14 09:31:42 1994 +0000 @@ -241,10 +241,10 @@ (setcdr command-line-args args)) ;; Under X Windows, this creates the X frame and deletes the terminal frame. + (if (fboundp 'face-initialize) + (face-initialize)) (if (fboundp 'frame-initialize) (frame-initialize)) - (if (fboundp 'face-initialize) - (face-initialize)) (run-hooks 'before-init-hook)