summaryrefslogtreecommitdiff
path: root/lisp/loadup.el
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-10-06 11:42:03 +0000
committerGerd Moellmann <gerd@gnu.org>2000-10-06 11:42:03 +0000
commit301d6830c03eb60056b1f6ac84965cc7c6ab3604 (patch)
tree92a5fddd7f93ac47e614f00d2d10ac298c5084e0 /lisp/loadup.el
parentf69aad2bcb71e2d13fd60f2b462753c41da5a9da (diff)
downloademacs-301d6830c03eb60056b1f6ac84965cc7c6ab3604.tar.gz
(toplevel): Load `loaddefs' before `help' because the
latter needs the autoloaded define-minor-mode macro.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r--lisp/loadup.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 0c23fd47b81..d97613f94b1 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -60,13 +60,7 @@
(load "bindings")
(setq load-source-file-function 'load-with-code-conversion)
(load "simple")
-(load "help")
(load "files")
-;; Any Emacs Lisp source file (*.el) loaded here after can contain
-;; multilingual text.
-(load "international/mule-cmds")
-(load "case-table")
-(load "international/characters")
(message "Lists of integers (garbage collection statistics) are normal output")
(message "while building Emacs; they do not indicate a problem.")
@@ -74,6 +68,13 @@
(load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
(message "%s" (garbage-collect))
+(load "help")
+;; Any Emacs Lisp source file (*.el) loaded here after can contain
+;; multilingual text.
+(load "international/mule-cmds")
+(load "case-table")
+(load "international/characters")
+
(let ((set-case-syntax-set-multibyte t))
(load "international/latin-1")
(load "international/latin-2")