# HG changeset patch # User Richard M. Stallman # Date 737262879 0 # Node ID 26bad513fbb0f3a4146cfe9df8f720ddc94a3b38 # Parent 1c7595e3089be1bab91389143650a400cbd05f03 (command-line): Call frame-initialize explicitly. Call face-initialize. (normal-top-level): Call frame-notice-user-settings explicitly. diff -r 1c7595e3089b -r 26bad513fbb0 lisp/startup.el --- a/lisp/startup.el Thu May 13 03:14:07 1993 +0000 +++ b/lisp/startup.el Thu May 13 03:14:39 1993 +0000 @@ -147,6 +147,7 @@ (run-hooks 'emacs-startup-hook) (and term-setup-hook (run-hooks 'term-setup-hook)) + (frame-notice-user-settings) (and window-setup-hook (run-hooks 'window-setup-hook))))) @@ -212,6 +213,11 @@ ;; Re-attach the program name to the front of the arg list. (setcdr command-line-args args)) + ;; Under X Windows, this creates the X frame and deletes the terminal frame. + (frame-initialize) + + (face-initialize) + (run-hooks 'before-init-hook) ;; Run the site-start library if it exists. The point of this file is