diff options
| author | Martin Rudalics | 2011-10-11 11:27:08 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2011-10-11 11:27:08 +0200 |
| commit | c72063fa834619e14f82b62051423f2a19dc65ed (patch) | |
| tree | c062671a89980ffb5da1ff68e3636a892be6c7c8 | |
| parent | 1f190e7399f1c359bf11deab3a7783adf2a0b130 (diff) | |
| download | emacs-c72063fa834619e14f82b62051423f2a19dc65ed.tar.gz emacs-c72063fa834619e14f82b62051423f2a19dc65ed.zip | |
Mention which window gets selected when deleting the selected window.
* windows.texi (Deleting Windows): Mention which window gets selected
when deleting the selected window.
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/windows.texi | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index f822b4bebdf..fa5aac6e9ec 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-10-11 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * windows.texi (Deleting Windows): Mention which window gets | ||
| 4 | selected when deleting the selected window. | ||
| 5 | |||
| 1 | 2011-10-09 Martin Rudalics <rudalics@gmx.at> | 6 | 2011-10-09 Martin Rudalics <rudalics@gmx.at> |
| 2 | 7 | ||
| 3 | * buffers.texi (The Buffer List): Describe how bury-buffer deals | 8 | * buffers.texi (The Buffer List): Describe how bury-buffer deals |
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index 41ccbaafd49..9dd03027ee2 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -1608,7 +1608,9 @@ This function removes @var{window} from display and returns @code{nil}. | |||
| 1608 | The argument @var{window} can denote any window and defaults to the | 1608 | The argument @var{window} can denote any window and defaults to the |
| 1609 | selected one. An error is signaled if @var{window} is the only window | 1609 | selected one. An error is signaled if @var{window} is the only window |
| 1610 | on its frame. Hence @var{window} must have at least one sibling window | 1610 | on its frame. Hence @var{window} must have at least one sibling window |
| 1611 | (@pxref{Windows and Frames}) in order to get deleted. | 1611 | (@pxref{Windows and Frames}) in order to get deleted. If @var{window} |
| 1612 | is the selected window on its frame, this function selects the most | ||
| 1613 | recently selected live window on that frame instead. | ||
| 1612 | 1614 | ||
| 1613 | If the variable @code{ignore-window-parameters} (@pxref{Window | 1615 | If the variable @code{ignore-window-parameters} (@pxref{Window |
| 1614 | Parameters}) is non-@code{nil}, this function ignores all parameters of | 1616 | Parameters}) is non-@code{nil}, this function ignores all parameters of |
| @@ -1629,7 +1631,8 @@ combination. | |||
| 1629 | @deffn Command delete-other-windows &optional window | 1631 | @deffn Command delete-other-windows &optional window |
| 1630 | This function makes @var{window} fill its frame and returns @code{nil}. | 1632 | This function makes @var{window} fill its frame and returns @code{nil}. |
| 1631 | The argument @var{window} can denote an arbitrary window and defaults to | 1633 | The argument @var{window} can denote an arbitrary window and defaults to |
| 1632 | the selected one. | 1634 | the selected one. Upon exit, @var{window} will be the selected window |
| 1635 | on its frame. | ||
| 1633 | 1636 | ||
| 1634 | If the variable @code{ignore-window-parameters} (@pxref{Window | 1637 | If the variable @code{ignore-window-parameters} (@pxref{Window |
| 1635 | Parameters}) is non-@code{nil}, this function ignores all parameters of | 1638 | Parameters}) is non-@code{nil}, this function ignores all parameters of |