diff options
| author | Richard M. Stallman | 1997-05-12 23:20:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-12 23:20:55 +0000 |
| commit | 9b73022fafc1bcf74b62ae7debb7988b8594c94f (patch) | |
| tree | f3cfec4e2b4e387e12879c71a0f8f212f903e3ef /lisp | |
| parent | 267d5b952ca4c1de0e107d73fb5dc78b32628988 (diff) | |
| download | emacs-9b73022fafc1bcf74b62ae7debb7988b8594c94f.tar.gz emacs-9b73022fafc1bcf74b62ae7debb7988b8594c94f.zip | |
Move bindings.el after mule-conf.el.
Load mule and mule-conf before simple.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/loadup.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 1a99670ed4d..5ed8d26cf82 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el | |||
| @@ -48,10 +48,15 @@ | |||
| 48 | (load "custom") | 48 | (load "custom") |
| 49 | (load "cus-start") | 49 | (load "cus-start") |
| 50 | (garbage-collect) | 50 | (garbage-collect) |
| 51 | (load "bindings") | ||
| 52 | (garbage-collect) | ||
| 53 | (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. | 51 | (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. |
| 54 | (garbage-collect) | 52 | (garbage-collect) |
| 53 | (load "mule") | ||
| 54 | (garbage-collect) | ||
| 55 | (load "mule-conf.el") ;Don't get confused if someone compiled this by mistake. | ||
| 56 | (garbage-collect) | ||
| 57 | (load "bindings") | ||
| 58 | (setq load-source-file-function 'load-with-code-conversion) | ||
| 59 | (garbage-collect) | ||
| 55 | (load "simple") | 60 | (load "simple") |
| 56 | (garbage-collect) | 61 | (garbage-collect) |
| 57 | (load "help") | 62 | (load "help") |
| @@ -59,11 +64,6 @@ | |||
| 59 | (load "files") | 64 | (load "files") |
| 60 | (garbage-collect) | 65 | (garbage-collect) |
| 61 | (load "format") | 66 | (load "format") |
| 62 | (garbage-collect) | ||
| 63 | (load "mule") | ||
| 64 | (garbage-collect) | ||
| 65 | (load "mule-conf.el") ;Don't get confused if someone compiled this by mistake. | ||
| 66 | (setq load-source-file-function 'load-with-code-conversion) | ||
| 67 | ;; Any Emacs Lisp source file (*.el) loaded here after can contain | 67 | ;; Any Emacs Lisp source file (*.el) loaded here after can contain |
| 68 | ;; multilingual text. | 68 | ;; multilingual text. |
| 69 | (garbage-collect) | 69 | (garbage-collect) |