emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r107797: * lisp/loadup.el: Load bindi


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107797: * lisp/loadup.el: Load bindings before cus-start.
Date: Sat, 07 Apr 2012 18:54:52 -0700
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107797
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2012-04-07 18:54:52 -0700
message:
  * 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
modified:
  lisp/ChangeLog
  lisp/loadup.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-04-07 20:26:01 +0000
+++ b/lisp/ChangeLog    2012-04-08 01:54:52 +0000
@@ -1,3 +1,8 @@
+2012-04-08  Glenn Morris  <address@hidden>
+
+       * loadup.el: Load bindings before cus-start.
+       This reduces somewhat the number of "rogue" settings in emacs -Q.
+
 2012-04-07  Glenn Morris  <address@hidden>
 
        * version.el (emacs-bzr-get-version): New function.

=== modified file 'lisp/loadup.el'
--- a/lisp/loadup.el    2012-04-07 19:51:51 +0000
+++ b/lisp/loadup.el    2012-04-08 01:54:52 +0000
@@ -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")


reply via email to

[Prev in Thread] Current Thread [Next in Thread]