From: Richard M. Stallman Date: Mon, 12 May 1997 23:20:55 +0000 (+0000) Subject: Move bindings.el after mule-conf.el. X-Git-Tag: emacs-20.1~2162 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9b73022fafc1bcf74b62ae7debb7988b8594c94f;p=emacs.git Move bindings.el after mule-conf.el. Load mule and mule-conf before simple. --- 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 @@ (load "custom") (load "cus-start") (garbage-collect) -(load "bindings") -(garbage-collect) (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. (garbage-collect) +(load "mule") +(garbage-collect) +(load "mule-conf.el") ;Don't get confused if someone compiled this by mistake. +(garbage-collect) +(load "bindings") +(setq load-source-file-function 'load-with-code-conversion) +(garbage-collect) (load "simple") (garbage-collect) (load "help") @@ -59,11 +64,6 @@ (load "files") (garbage-collect) (load "format") -(garbage-collect) -(load "mule") -(garbage-collect) -(load "mule-conf.el") ;Don't get confused if someone compiled this by mistake. -(setq load-source-file-function 'load-with-code-conversion) ;; Any Emacs Lisp source file (*.el) loaded here after can contain ;; multilingual text. (garbage-collect)