summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-05-13 03:14:39 +0000
committerRichard M. Stallman <rms@gnu.org>1993-05-13 03:14:39 +0000
commitc722566c7ca757012799bd9ee4dfcd932f716698 (patch)
treeecf973a19e9d9352b1f17559df50e4c3f8862eb4 /lisp
parent4f6e4ad6cdd5717068e16ccaac8da7c123807646 (diff)
downloademacs-c722566c7ca757012799bd9ee4dfcd932f716698.tar.gz
(command-line): Call frame-initialize explicitly.
Call face-initialize. (normal-top-level): Call frame-notice-user-settings explicitly.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/startup.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index da88df9e8e1..10777d018e1 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -147,6 +147,7 @@ directory name of the directory where the `.emacs' file was looked for.")
(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 @@ directory name of the directory where the `.emacs' file was looked for.")
;; 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