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 /src | |
| 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 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/lisp.mk | 1 |
2 files changed, 2 insertions, 1 deletions
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 | ||
| 9 | 2013-11-29 Tom Seddon <emacs@tomseddon.plus.com> (tiny change) | 9 | 2013-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 | ||