aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2007-08-23 00:07:49 +0000
committerJuri Linkov2007-08-23 00:07:49 +0000
commitd4e9f06737f102f454c400f2918e6fc228871350 (patch)
tree9e84811993703e1693bdf1e8032b941da2727540
parent875ad194619941fc110d1f6b5e724dc9315a10bd (diff)
downloademacs-d4e9f06737f102f454c400f2918e6fc228871350.tar.gz
emacs-d4e9f06737f102f454c400f2918e6fc228871350.zip
Add "button" loading after "faces" and move "startup" to load after "button".
-rw-r--r--lisp/loadup.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el
index b6464372a41..1b96afd5486 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -69,11 +69,12 @@
69(setq load-source-file-function 'load-with-code-conversion) 69(setq load-source-file-function 'load-with-code-conversion)
70(load "files") 70(load "files")
71 71
72(load "startup")
73
74(load "cus-face") 72(load "cus-face")
75(load "faces") ; after here, `defface' may be used. 73(load "faces") ; after here, `defface' may be used.
76 74
75(load "button")
76(load "startup")
77
77(message "Lists of integers (garbage collection statistics) are normal output") 78(message "Lists of integers (garbage collection statistics) are normal output")
78(message "while building Emacs; they do not indicate a problem.") 79(message "while building Emacs; they do not indicate a problem.")
79(message "%s" (garbage-collect)) 80(message "%s" (garbage-collect))