aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorSam Steingold2015-01-06 16:32:09 -0500
committerSam Steingold2015-01-06 16:32:09 -0500
commit95295df44cc2b6e0e2442aeff96b0fe2ceac405c (patch)
treefb4212908118725d2d1a6218f267ff1c201691fc /etc
parentc7511666094a87021e0f3685657bfc9e380d67a7 (diff)
downloademacs-95295df44cc2b6e0e2442aeff96b0fe2ceac405c.tar.gz
emacs-95295df44cc2b6e0e2442aeff96b0fe2ceac405c.zip
Use generic `display-buffer-alist' instead of mode-specific customizations.
* lisp/shell.el (shell-display-buffer-actions): Remove, use `display-buffer-alist' instead.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 3a53c9c02a5..4d704ce5c67 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -193,9 +193,10 @@ Unicode standards.
193 193
194When you invoke `shell' interactively, the *shell* buffer will now 194When you invoke `shell' interactively, the *shell* buffer will now
195display in a new window. However, you can customize this behavior via 195display in a new window. However, you can customize this behavior via
196the new `shell-display-buffer-actions' variable. For example, to get 196the `display-buffer-alist' variable. For example, to get
197the old behavior -- *shell* buffer displays in current window -- use 197the old behavior -- *shell* buffer displays in current window -- use
198(setq shell-display-buffer-actions '(display-buffer-same-window)). 198(add-to-list 'display-buffer-alist
199 '("^\\*shell\\*$" . (display-buffer-same-window))).
199 200
200** ido 201** ido
201*** New command `ido-bury-buffer-at-head' bound to C-S-b 202*** New command `ido-bury-buffer-at-head' bound to C-S-b