diff options
| author | Juri Linkov | 2007-08-23 00:07:49 +0000 |
|---|---|---|
| committer | Juri Linkov | 2007-08-23 00:07:49 +0000 |
| commit | d4e9f06737f102f454c400f2918e6fc228871350 (patch) | |
| tree | 9e84811993703e1693bdf1e8032b941da2727540 | |
| parent | 875ad194619941fc110d1f6b5e724dc9315a10bd (diff) | |
| download | emacs-d4e9f06737f102f454c400f2918e6fc228871350.tar.gz emacs-d4e9f06737f102f454c400f2918e6fc228871350.zip | |
Add "button" loading after "faces" and move "startup" to load after "button".
| -rw-r--r-- | lisp/loadup.el | 5 |
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)) |