From 853ccbd574fb398b9e62a6d85db3220f99b3eb3c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 14 Apr 1994 09:31:42 +0000 Subject: [PATCH] (command-line): Call face-initialize before frame-initialize. --- lisp/startup.el | 4 ++-- 1 file 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'.") (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) -- 2.39.5