Mercurial > emacs
changeset 6874:12dcd89cfd88
(command-line): Call face-initialize before frame-initialize.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 14 Apr 1994 09:31:42 +0000 |
parents | 086e14489073 |
children | 1862df471cac |
files | lisp/startup.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)