Mercurial > emacs
changeset 39650:85be22a1994b
("faces"): Move load before loading "loaddefs.el".
("button"): New load, just before "help" (which uses it).
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sun, 07 Oct 2001 11:38:15 +0000 |
parents | 7edeec63e660 |
children | 444f50200adc |
files | lisp/loadup.el |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/loadup.el Sun Oct 07 11:35:09 2001 +0000 +++ b/lisp/loadup.el Sun Oct 07 11:38:15 2001 +0000 @@ -64,13 +64,18 @@ (load "simple") (load "files") +(load "faces") ; after here, `defface' may be used. + (message "Lists of integers (garbage collection statistics) are normal output") (message "while building Emacs; they do not indicate a problem.") (message "%s" (garbage-collect)) (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. (message "%s" (garbage-collect)) +(load "button") ; used by help + (load "help") + ;; Any Emacs Lisp source file (*.el) loaded here after can contain ;; multilingual text. (load "international/mule-cmds") @@ -112,7 +117,7 @@ (load "window") (load "frame") (load "term/tty-colors") -(load "faces") + (if (fboundp 'frame-face-alist) (progn (load "facemenu")))