aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2001-10-07 11:38:15 +0000
committerMiles Bader2001-10-07 11:38:15 +0000
commitd6af189ae7d4826e6f13ae825d41298195d06f58 (patch)
tree0ba1754627d7b9d320380e0d530be9fb73a3dc13
parente517f56d879e28ff75784bff91e52c5a4b799a2b (diff)
downloademacs-d6af189ae7d4826e6f13ae825d41298195d06f58.tar.gz
emacs-d6af189ae7d4826e6f13ae825d41298195d06f58.zip
("faces"): Move load before loading "loaddefs.el".
("button"): New load, just before "help" (which uses it).
-rw-r--r--lisp/loadup.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el
index dc91a6b086e..729da92182f 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -64,13 +64,18 @@
64(load "simple") 64(load "simple")
65(load "files") 65(load "files")
66 66
67(load "faces") ; after here, `defface' may be used.
68
67(message "Lists of integers (garbage collection statistics) are normal output") 69(message "Lists of integers (garbage collection statistics) are normal output")
68(message "while building Emacs; they do not indicate a problem.") 70(message "while building Emacs; they do not indicate a problem.")
69(message "%s" (garbage-collect)) 71(message "%s" (garbage-collect))
70(load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. 72(load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
71(message "%s" (garbage-collect)) 73(message "%s" (garbage-collect))
72 74
75(load "button") ; used by help
76
73(load "help") 77(load "help")
78
74;; Any Emacs Lisp source file (*.el) loaded here after can contain 79;; Any Emacs Lisp source file (*.el) loaded here after can contain
75;; multilingual text. 80;; multilingual text.
76(load "international/mule-cmds") 81(load "international/mule-cmds")
@@ -112,7 +117,7 @@
112(load "window") 117(load "window")
113(load "frame") 118(load "frame")
114(load "term/tty-colors") 119(load "term/tty-colors")
115(load "faces") 120
116(if (fboundp 'frame-face-alist) 121(if (fboundp 'frame-face-alist)
117 (progn 122 (progn
118 (load "facemenu"))) 123 (load "facemenu")))