diff options
| author | Stefan Monnier | 2013-11-29 13:36:31 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2013-11-29 13:36:31 -0500 |
| commit | 4e36a6a6e2ce2367d0c049c45c91a7ae48ae1e77 (patch) | |
| tree | 43c580d62dc819d38b189d9ee5ac266a846f34bd /lisp | |
| parent | a82537763d320911ec36d35869900110c9eb7137 (diff) | |
| download | emacs-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.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/loadup.el | 1 | ||||
| -rw-r--r-- | lisp/uniquify.el | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0a8043feeba..b40773904bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2013-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. |
| 98 | The value determines the buffer name style and is one of `forward', | 98 | The 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'. |