aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2013-11-29 13:36:31 -0500
committerStefan Monnier2013-11-29 13:36:31 -0500
commit4e36a6a6e2ce2367d0c049c45c91a7ae48ae1e77 (patch)
tree43c580d62dc819d38b189d9ee5ac266a846f34bd
parenta82537763d320911ec36d35869900110c9eb7137 (diff)
downloademacs-4e36a6a6e2ce2367d0c049c45c91a7ae48ae1e77.tar.gz
emacs-4e36a6a6e2ce2367d0c049c45c91a7ae48ae1e77.zip
* lisp/loadup.el: Preload "uniquify".
* lisp/uniquify.el (uniquify-buffer-name-style): Change default. * src/lisp.mk (lisp): Add uniquify.elc.
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/loadup.el1
-rw-r--r--lisp/uniquify.el2
-rw-r--r--src/ChangeLog2
-rw-r--r--src/lisp.mk1
6 files changed, 10 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index febc367c6d9..0bcd13af3eb 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -205,6 +205,8 @@ Czech typography rules. To globally enable this feature, evaluate:
205 205
206** `electric-indent-mode' is enabled by default. 206** `electric-indent-mode' is enabled by default.
207 207
208** Uniquify is enabled by default.
209
208** Command `rectangle-mark-mode' bound to C-x SPC makes a rectangular region. 210** Command `rectangle-mark-mode' bound to C-x SPC makes a rectangular region.
209Most commands are still unaware of it, but kill/yank do work on the rectangle. 211Most commands are still unaware of it, but kill/yank do work on the rectangle.
210 212
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0a8043feeba..b40773904bf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12013-11-29 Stefan Monnier <monnier@iro.umontreal.ca> 12013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * uniquify.el (uniquify-buffer-name-style): Change default.
4
5 * loadup.el: Preload "uniquify".
6
3 * time.el (display-time-update): Update all mode lines (bug#15999). 7 * time.el (display-time-update): Update all mode lines (bug#15999).
4 8
5 * electric.el (electric-indent-mode): Enable by default. 9 * electric.el (electric-indent-mode): Enable by default.
diff --git a/lisp/loadup.el b/lisp/loadup.el
index aececad804f..b72ddc0955b 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -280,6 +280,7 @@
280 280
281(load "vc/vc-hooks") 281(load "vc/vc-hooks")
282(load "vc/ediff-hook") 282(load "vc/ediff-hook")
283(load "uniquify")
283(load "electric") 284(load "electric")
284(if (not (eq system-type 'ms-dos)) (load "tooltip")) 285(if (not (eq system-type 'ms-dos)) (load "tooltip"))
285 286
diff --git a/lisp/uniquify.el b/lisp/uniquify.el
index 546796b619a..b7bb4c73879 100644
--- a/lisp/uniquify.el
+++ b/lisp/uniquify.el
@@ -93,7 +93,7 @@
93 :group 'files) 93 :group 'files)
94 94
95 95
96(defcustom uniquify-buffer-name-style nil 96(defcustom uniquify-buffer-name-style 'post-forward
97 "If non-nil, buffer names are uniquified with parts of directory name. 97 "If non-nil, buffer names are uniquified with parts of directory name.
98The value determines the buffer name style and is one of `forward', 98The value determines the buffer name style and is one of `forward',
99`reverse', `post-forward', or `post-forward-angle-brackets'. 99`reverse', `post-forward', or `post-forward-angle-brackets'.
diff --git a/src/ChangeLog b/src/ChangeLog
index 0810d083f33..02a3f4eb21d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -4,7 +4,7 @@
4 (redisplay_internal): Use it (bug#15999). 4 (redisplay_internal): Use it (bug#15999).
5 (prepare_menu_bars, redisplay_window): Use it as well. 5 (prepare_menu_bars, redisplay_window): Use it as well.
6 6
7 * lisp.mk (lisp): Add electric.elc. 7 * lisp.mk (lisp): Add electric.elc and uniquify.elc.
8 8
92013-11-29 Tom Seddon <emacs@tomseddon.plus.com> (tiny change) 92013-11-29 Tom Seddon <emacs@tomseddon.plus.com> (tiny change)
10 10
diff --git a/src/lisp.mk b/src/lisp.mk
index 72ada45c5e4..d61f7f71c2f 100644
--- a/src/lisp.mk
+++ b/src/lisp.mk
@@ -165,6 +165,7 @@ lisp = \
165 $(lispsource)/vc/vc-hooks.elc \ 165 $(lispsource)/vc/vc-hooks.elc \
166 $(lispsource)/vc/ediff-hook.elc \ 166 $(lispsource)/vc/ediff-hook.elc \
167 $(lispsource)/electric.elc \ 167 $(lispsource)/electric.elc \
168 $(lispsource)/uniquify.elc \
168 $(lispsource)/tooltip.elc 169 $(lispsource)/tooltip.elc
169 170
170 171