summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-08-09 06:20:51 +0000
committerRichard M. Stallman <rms@gnu.org>1998-08-09 06:20:51 +0000
commit2a00a42ac85d7a638931ef9b2806eac15f8b9a9c (patch)
tree43fa529b3e3810ee0ca009b33a9a5127f2ad9999
parentb7305fdc0b1b2c7e45fca0e4b187defa4640579e (diff)
downloademacs-2a00a42ac85d7a638931ef9b2806eac15f8b9a9c.tar.gz
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 @@
;;; We don't want to have any undo records in the dumped Emacs.
(buffer-disable-undo "*scratch*")
+(load "byte-run")
(load "subr")
;; We specify .el in case someone compiled version.el by mistake.
(load "version.el")
-(load "byte-run")
(load "map-ynp")
(load "widget")
(load "custom")
(load "cus-start")
(load "international/mule")
(load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
+(load "format")
(load "bindings")
(setq load-source-file-function 'load-with-code-conversion)
(load "simple")
(load "help")
(load "files")
-(load "format")
;; Any Emacs Lisp source file (*.el) loaded here after can contain
;; multilingual text.
(load "international/mule-cmds")
@@ -67,7 +67,7 @@
(load "international/latin-3")
(load "international/latin-4")
(load "international/latin-5"))
-;; Load langauge specific files.
+;; Load language-specific files.
(load "language/chinese")
(load "language/cyrillic")
(load "language/indian")