diff options
| author | Gerd Moellmann | 2000-11-20 20:28:41 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-11-20 20:28:41 +0000 |
| commit | e258eedc76c7259036ac956a0a73f0b0caa2da63 (patch) | |
| tree | c310577e83e86d8c946ded3102e2c527967ce9bc | |
| parent | 29a01b7231f39128e0702cc33deadf57fba964e9 (diff) | |
| download | emacs-e258eedc76c7259036ac956a0a73f0b0caa2da63.tar.gz emacs-e258eedc76c7259036ac956a0a73f0b0caa2da63.zip | |
Add description of function window-list.
| -rw-r--r-- | lispref/windows.texi | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lispref/windows.texi b/lispref/windows.texi index 053edf2b661..0298407729a 100644 --- a/lispref/windows.texi +++ b/lispref/windows.texi | |||
| @@ -581,6 +581,20 @@ set of windows to include in the scan. See @code{next-window}, above, | |||
| 581 | for details. | 581 | for details. |
| 582 | @end defun | 582 | @end defun |
| 583 | 583 | ||
| 584 | @defun window-list &optional frame minibuf window | ||
| 585 | This function returns a list of the windows on @var{frame}, starting | ||
| 586 | with @var{window}. If @var{frame} is @code{nil} or omitted, the | ||
| 587 | selected frame is used instead; if @var{window} is @code{nil} or | ||
| 588 | omitted, the selected window is used instead. | ||
| 589 | |||
| 590 | The value of @var{minibuf} determines if the minibuffer window will be | ||
| 591 | included in the result list. If @var{minibuf} is @code{t}, the | ||
| 592 | minibuffer window will be included, even if it isn't active. If | ||
| 593 | @var[minibuf} is @code{nil} or omitted, the minibuffer window will | ||
| 594 | only be included in the list if it is active. If @var{minibuf} is | ||
| 595 | neither @code{nil} nor @code{t}, the minibuffer window is not | ||
| 596 | included, whether or not it is active. | ||
| 597 | |||
| 584 | @node Buffers and Windows | 598 | @node Buffers and Windows |
| 585 | @section Buffers and Windows | 599 | @section Buffers and Windows |
| 586 | @cindex examining windows | 600 | @cindex examining windows |