emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r115291: * lisp/loadup.el: Preload "uniquify".


From: Stefan Monnier
Subject: [Emacs-diffs] trunk r115291: * lisp/loadup.el: Preload "uniquify".
Date: Fri, 29 Nov 2013 18:36:38 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115291
revision-id: address@hidden
parent: address@hidden
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Fri 2013-11-29 13:36:31 -0500
message:
  * lisp/loadup.el: Preload "uniquify".
  * lisp/uniquify.el (uniquify-buffer-name-style): Change default.
  * src/lisp.mk (lisp): Add uniquify.elc.
modified:
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/loadup.el                 loadup.el-20091113204419-o5vbwnq5f7feedwu-49
  lisp/uniquify.el               uniquify.el-20091113204419-o5vbwnq5f7feedwu-956
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/lisp.mk                    lisp.mk-20110520003707-7eka49p37u9mards-1
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-11-29 17:59:38 +0000
+++ b/etc/NEWS  2013-11-29 18:36:31 +0000
@@ -205,6 +205,8 @@
 
 ** `electric-indent-mode' is enabled by default.
 
+** Uniquify is enabled by default.
+
 ** Command `rectangle-mark-mode' bound to C-x SPC makes a rectangular region.
 Most commands are still unaware of it, but kill/yank do work on the rectangle.
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-11-29 18:00:57 +0000
+++ b/lisp/ChangeLog    2013-11-29 18:36:31 +0000
@@ -1,5 +1,9 @@
 2013-11-29  Stefan Monnier  <address@hidden>
 
+       * uniquify.el (uniquify-buffer-name-style): Change default.
+
+       * loadup.el: Preload "uniquify".
+
        * time.el (display-time-update): Update all mode lines (bug#15999).
 
        * electric.el (electric-indent-mode): Enable by default.

=== modified file 'lisp/loadup.el'
--- a/lisp/loadup.el    2013-11-29 17:59:38 +0000
+++ b/lisp/loadup.el    2013-11-29 18:36:31 +0000
@@ -280,6 +280,7 @@
 
 (load "vc/vc-hooks")
 (load "vc/ediff-hook")
+(load "uniquify")
 (load "electric")
 (if (not (eq system-type 'ms-dos)) (load "tooltip"))
 

=== modified file 'lisp/uniquify.el'
--- a/lisp/uniquify.el  2013-01-02 16:13:04 +0000
+++ b/lisp/uniquify.el  2013-11-29 18:36:31 +0000
@@ -93,7 +93,7 @@
   :group 'files)
 
 
-(defcustom uniquify-buffer-name-style nil
+(defcustom uniquify-buffer-name-style 'post-forward
   "If non-nil, buffer names are uniquified with parts of directory name.
 The value determines the buffer name style and is one of `forward',
 `reverse', `post-forward', or `post-forward-angle-brackets'.

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-11-29 18:20:24 +0000
+++ b/src/ChangeLog     2013-11-29 18:36:31 +0000
@@ -4,7 +4,7 @@
        (redisplay_internal): Use it (bug#15999).
        (prepare_menu_bars, redisplay_window): Use it as well.
 
-       * lisp.mk (lisp): Add electric.elc.
+       * lisp.mk (lisp): Add electric.elc and uniquify.elc.
 
 2013-11-29  Tom Seddon  <address@hidden>  (tiny change)
 

=== modified file 'src/lisp.mk'
--- a/src/lisp.mk       2013-11-29 17:59:38 +0000
+++ b/src/lisp.mk       2013-11-29 18:36:31 +0000
@@ -165,6 +165,7 @@
        $(lispsource)/vc/vc-hooks.elc \
        $(lispsource)/vc/ediff-hook.elc \
        $(lispsource)/electric.elc \
+       $(lispsource)/uniquify.elc \
        $(lispsource)/tooltip.elc
 
 


reply via email to

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