diff options
| author | Richard M. Stallman | 1993-05-13 03:14:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-13 03:14:39 +0000 |
| commit | c722566c7ca757012799bd9ee4dfcd932f716698 (patch) | |
| tree | ecf973a19e9d9352b1f17559df50e4c3f8862eb4 | |
| parent | 4f6e4ad6cdd5717068e16ccaac8da7c123807646 (diff) | |
| download | emacs-c722566c7ca757012799bd9ee4dfcd932f716698.tar.gz emacs-c722566c7ca757012799bd9ee4dfcd932f716698.zip | |
(command-line): Call frame-initialize explicitly.
Call face-initialize.
(normal-top-level): Call frame-notice-user-settings explicitly.
| -rw-r--r-- | lisp/startup.el | 6 |
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.") | |||
| 147 | (run-hooks 'emacs-startup-hook) | 147 | (run-hooks 'emacs-startup-hook) |
| 148 | (and term-setup-hook | 148 | (and term-setup-hook |
| 149 | (run-hooks 'term-setup-hook)) | 149 | (run-hooks 'term-setup-hook)) |
| 150 | (frame-notice-user-settings) | ||
| 150 | (and window-setup-hook | 151 | (and window-setup-hook |
| 151 | (run-hooks 'window-setup-hook))))) | 152 | (run-hooks 'window-setup-hook))))) |
| 152 | 153 | ||
| @@ -212,6 +213,11 @@ directory name of the directory where the `.emacs' file was looked for.") | |||
| 212 | ;; Re-attach the program name to the front of the arg list. | 213 | ;; Re-attach the program name to the front of the arg list. |
| 213 | (setcdr command-line-args args)) | 214 | (setcdr command-line-args args)) |
| 214 | 215 | ||
| 216 | ;; Under X Windows, this creates the X frame and deletes the terminal frame. | ||
| 217 | (frame-initialize) | ||
| 218 | |||
| 219 | (face-initialize) | ||
| 220 | |||
| 215 | (run-hooks 'before-init-hook) | 221 | (run-hooks 'before-init-hook) |
| 216 | 222 | ||
| 217 | ;; Run the site-start library if it exists. The point of this file is | 223 | ;; Run the site-start library if it exists. The point of this file is |