]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/loadup.el: Preload "uniquify".
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 29 Nov 2013 18:36:31 +0000 (13:36 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 29 Nov 2013 18:36:31 +0000 (13:36 -0500)
* lisp/uniquify.el (uniquify-buffer-name-style): Change default.
* src/lisp.mk (lisp): Add uniquify.elc.

etc/NEWS
lisp/ChangeLog
lisp/loadup.el
lisp/uniquify.el
src/ChangeLog
src/lisp.mk

index febc367c6d94cdd54a41911a5c9c5aaeeb52842a..0bcd13af3eb3281fdd12d703a849adbb209e2d1e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -205,6 +205,8 @@ Czech typography rules.  To globally enable this feature, evaluate:
 
 ** `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.
 
index 0a8043feeba0b7edaa232b08d5ebde6bab3488d9..b40773904bf4466b524ddc1d0f7623831b9c44e0 100644 (file)
@@ -1,5 +1,9 @@
 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * 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.
index aececad804fe2c0265eb05f4e5bf2f6460039354..b72ddc0955bce8f1e0a77eb26f1f2434d4a2733a 100644 (file)
 
 (load "vc/vc-hooks")
 (load "vc/ediff-hook")
+(load "uniquify")
 (load "electric")
 (if (not (eq system-type 'ms-dos)) (load "tooltip"))
 
index 546796b619a14f15981bbb447bdb098ebddac814..b7bb4c73879649cd21fb0019221899ce58503b9a 100644 (file)
@@ -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'.
index 0810d083f3394b574cc16f18735364df6e7a9a3b..02a3f4eb21d3bdd12c4844724234c5fc23450a5c 100644 (file)
@@ -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  <emacs@tomseddon.plus.com>  (tiny change)
 
index 72ada45c5e42bd547badf170e9f943d1626e5b65..d61f7f71c2fbab8701e423d35dded16c21f9513e 100644 (file)
@@ -165,6 +165,7 @@ lisp = \
        $(lispsource)/vc/vc-hooks.elc \
        $(lispsource)/vc/ediff-hook.elc \
        $(lispsource)/electric.elc \
+       $(lispsource)/uniquify.elc \
        $(lispsource)/tooltip.elc