diff options
| author | Juri Linkov | 2013-12-03 03:19:24 +0200 |
|---|---|---|
| committer | Juri Linkov | 2013-12-03 03:19:24 +0200 |
| commit | 9139632a34c396ccd1677e86f3e4e870c025b2e3 (patch) | |
| tree | 6672484db971db00eed7abbc83f9b7f4d88ffc0e /doc | |
| parent | 370f7655945c5f91bc3a4e57d671eb9d20856e29 (diff) | |
| download | emacs-9139632a34c396ccd1677e86f3e4e870c025b2e3.tar.gz emacs-9139632a34c396ccd1677e86f3e4e870c025b2e3.zip | |
* lisp/window.el (display-buffer-no-window): New action function.
(display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
* lisp/simple.el (shell-command): Add window alist entry `allow-no-window'
to `display-buffer'.
(async-shell-command): Doc fix.
* lisp/progmodes/compile.el (compilation-start): Rename window alist
entry `no-display-ok' to `allow-no-window'.
* doc/lispref/windows.texi (Choosing Window): Rename `no-display-ok' to
`allow-no-window'.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/windows.texi | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index cd94a72f77d..92335dc616d 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-12-03 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * windows.texi (Choosing Window): Rename `no-display-ok' to | ||
| 4 | `allow-no-window'. (Bug#13594) | ||
| 5 | |||
| 1 | 2013-11-30 Glenn Morris <rgm@gnu.org> | 6 | 2013-11-30 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * Makefile.in (distclean): Remove Makefile. | 8 | * Makefile.in (distclean): Remove Makefile. |
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index 8f592dfebb3..661860025f3 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -1843,9 +1843,9 @@ The constant @code{display-buffer-fallback-action}. | |||
| 1843 | Each action function is called in turn, passing the buffer as the | 1843 | Each action function is called in turn, passing the buffer as the |
| 1844 | first argument and the combined action alist as the second argument, | 1844 | first argument and the combined action alist as the second argument, |
| 1845 | until one of the functions returns non-@code{nil}. The caller can | 1845 | until one of the functions returns non-@code{nil}. The caller can |
| 1846 | pass @code{(no-display-ok . t)} as an element of the action alist to | 1846 | pass @code{(allow-no-window . t)} as an element of the action alist to |
| 1847 | indicate its readiness to handle the case of not displaying the | 1847 | indicate its readiness to handle the case of not displaying the |
| 1848 | buffer. | 1848 | buffer in a window. |
| 1849 | 1849 | ||
| 1850 | The argument @var{action} can also have a non-@code{nil}, non-list | 1850 | The argument @var{action} can also have a non-@code{nil}, non-list |
| 1851 | value. This has the special meaning that the buffer should be | 1851 | value. This has the special meaning that the buffer should be |