From: Glenn Morris Date: Sun, 8 Apr 2012 01:54:52 +0000 (-0700) Subject: * lisp/loadup.el: Load bindings before cus-start. X-Git-Tag: emacs-24.2.90~471^2~380 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5c5b8e236401bccf73884701035d1e91ac20874d;p=emacs.git * lisp/loadup.el: Load bindings before cus-start. This reduces somewhat the number of "rogue" settings in emacs -Q. Ref: http://lists.gnu.org/archive/html/emacs-devel/2008-06/msg00083.html --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6bf94988b5e..c2597bc0e55 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-04-08 Glenn Morris + + * loadup.el: Load bindings before cus-start. + This reduces somewhat the number of "rogue" settings in emacs -Q. + 2012-04-07 Glenn Morris * version.el (emacs-bzr-get-version): New function. diff --git a/lisp/loadup.el b/lisp/loadup.el index 16cd0171e61..2ba24c8fe37 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -89,12 +89,12 @@ (load "widget") (load "custom") (load "emacs-lisp/map-ynp") -(load "cus-start") (load "international/mule") (load "international/mule-conf") (load "env") (load "format") (load "bindings") +(load "cus-start") (load "window") ; Needed here for `replace-buffer-in-windows'. (setq load-source-file-function 'load-with-code-conversion) (load "files")