summaryrefslogtreecommitdiff
path: root/lisp/uniquify.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2013-12-12 02:42:16 +0200
committerJuri Linkov <juri@jurta.org>2013-12-12 02:42:16 +0200
commitd5ccb7be025ddc5a6ac8c5291d89596b78d9745c (patch)
tree6294a8832e9953b8ce72f30be4d396daf0255c31 /lisp/uniquify.el
parent7204a2e666b34d8b309b7b8568c88032468e207e (diff)
downloademacs-d5ccb7be025ddc5a6ac8c5291d89596b78d9745c.tar.gz
* lisp/uniquify.el (uniquify-buffer-name-style): Change default to `post-forward-angle-brackets'.
* lisp/menu-bar.el (menu-bar-options-menu): Don't require preloaded `uniquify'. Change default to `post-forward-angle-brackets'. http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00317.html
Diffstat (limited to 'lisp/uniquify.el')
-rw-r--r--lisp/uniquify.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/uniquify.el b/lisp/uniquify.el
index b7bb4c73879..a52ed613941 100644
--- a/lisp/uniquify.el
+++ b/lisp/uniquify.el
@@ -93,7 +93,7 @@
:group 'files)
-(defcustom uniquify-buffer-name-style 'post-forward
+(defcustom uniquify-buffer-name-style 'post-forward-angle-brackets
"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'.
@@ -111,6 +111,7 @@ of `uniquify-strip-common-suffix'."
(const post-forward)
(const post-forward-angle-brackets)
(const :tag "standard Emacs behavior (nil)" nil))
+ :version "24.4"
:require 'uniquify
:group 'uniquify)