diff options
| author | Gerd Moellmann | 2000-10-06 11:42:03 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-10-06 11:42:03 +0000 |
| commit | 301d6830c03eb60056b1f6ac84965cc7c6ab3604 (patch) | |
| tree | 92a5fddd7f93ac47e614f00d2d10ac298c5084e0 | |
| parent | f69aad2bcb71e2d13fd60f2b462753c41da5a9da (diff) | |
| download | emacs-301d6830c03eb60056b1f6ac84965cc7c6ab3604.tar.gz emacs-301d6830c03eb60056b1f6ac84965cc7c6ab3604.zip | |
(toplevel): Load `loaddefs' before `help' because the
latter needs the autoloaded define-minor-mode macro.
| -rw-r--r-- | lisp/loadup.el | 13 |
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 @@ | |||
| 60 | (load "bindings") | 60 | (load "bindings") |
| 61 | (setq load-source-file-function 'load-with-code-conversion) | 61 | (setq load-source-file-function 'load-with-code-conversion) |
| 62 | (load "simple") | 62 | (load "simple") |
| 63 | (load "help") | ||
| 64 | (load "files") | 63 | (load "files") |
| 65 | ;; Any Emacs Lisp source file (*.el) loaded here after can contain | ||
| 66 | ;; multilingual text. | ||
| 67 | (load "international/mule-cmds") | ||
| 68 | (load "case-table") | ||
| 69 | (load "international/characters") | ||
| 70 | 64 | ||
| 71 | (message "Lists of integers (garbage collection statistics) are normal output") | 65 | (message "Lists of integers (garbage collection statistics) are normal output") |
| 72 | (message "while building Emacs; they do not indicate a problem.") | 66 | (message "while building Emacs; they do not indicate a problem.") |
| @@ -74,6 +68,13 @@ | |||
| 74 | (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. | 68 | (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. |
| 75 | (message "%s" (garbage-collect)) | 69 | (message "%s" (garbage-collect)) |
| 76 | 70 | ||
| 71 | (load "help") | ||
| 72 | ;; Any Emacs Lisp source file (*.el) loaded here after can contain | ||
| 73 | ;; multilingual text. | ||
| 74 | (load "international/mule-cmds") | ||
| 75 | (load "case-table") | ||
| 76 | (load "international/characters") | ||
| 77 | |||
| 77 | (let ((set-case-syntax-set-multibyte t)) | 78 | (let ((set-case-syntax-set-multibyte t)) |
| 78 | (load "international/latin-1") | 79 | (load "international/latin-1") |
| 79 | (load "international/latin-2") | 80 | (load "international/latin-2") |