aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-09 06:20:51 +0000
committerRichard M. Stallman1998-08-09 06:20:51 +0000
commit8f89dc56824e4886964a0b46e41bb271d8576ccd (patch)
treebd067793771c314cb1dc4ba1c90426b021de42bd
parentf024b6aac03b2c6fb6c457bb8e2e40039177879f (diff)
downloademacs-8f89dc56824e4886964a0b46e41bb271d8576ccd.tar.gz
emacs-8f89dc56824e4886964a0b46e41bb271d8576ccd.zip
Load byte-run and format a little earlier.
-rw-r--r--lisp/loadup.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 01133fbba71..661511c53b5 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -33,24 +33,24 @@
33;;; We don't want to have any undo records in the dumped Emacs. 33;;; We don't want to have any undo records in the dumped Emacs.
34(buffer-disable-undo "*scratch*") 34(buffer-disable-undo "*scratch*")
35 35
36(load "byte-run")
36(load "subr") 37(load "subr")
37 38
38;; We specify .el in case someone compiled version.el by mistake. 39;; We specify .el in case someone compiled version.el by mistake.
39(load "version.el") 40(load "version.el")
40 41
41(load "byte-run")
42(load "map-ynp") 42(load "map-ynp")
43(load "widget") 43(load "widget")
44(load "custom") 44(load "custom")
45(load "cus-start") 45(load "cus-start")
46(load "international/mule") 46(load "international/mule")
47(load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake. 47(load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
48(load "format")
48(load "bindings") 49(load "bindings")
49(setq load-source-file-function 'load-with-code-conversion) 50(setq load-source-file-function 'load-with-code-conversion)
50(load "simple") 51(load "simple")
51(load "help") 52(load "help")
52(load "files") 53(load "files")
53(load "format")
54;; Any Emacs Lisp source file (*.el) loaded here after can contain 54;; Any Emacs Lisp source file (*.el) loaded here after can contain
55;; multilingual text. 55;; multilingual text.
56(load "international/mule-cmds") 56(load "international/mule-cmds")
@@ -67,7 +67,7 @@
67 (load "international/latin-3") 67 (load "international/latin-3")
68 (load "international/latin-4") 68 (load "international/latin-4")
69 (load "international/latin-5")) 69 (load "international/latin-5"))
70;; Load langauge specific files. 70;; Load language-specific files.
71(load "language/chinese") 71(load "language/chinese")
72(load "language/cyrillic") 72(load "language/cyrillic")
73(load "language/indian") 73(load "language/indian")