diff options
| author | Richard M. Stallman | 2005-04-23 16:22:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-04-23 16:22:02 +0000 |
| commit | 658819b69f402129be34116e356cfc661e3fe53f (patch) | |
| tree | f7a256980a117d1f2b58f06370c612fbc4a88bb0 | |
| parent | c50f15d05a0f7da0a2e5a36e9bf8c626c5817d6b (diff) | |
| download | emacs-658819b69f402129be34116e356cfc661e3fe53f.tar.gz emacs-658819b69f402129be34116e356cfc661e3fe53f.zip | |
(Cyclic Window Ordering): Clarify window-list.
| -rw-r--r-- | lispref/windows.texi | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/lispref/windows.texi b/lispref/windows.texi index 042ede6ed4c..752969e458f 100644 --- a/lispref/windows.texi +++ b/lispref/windows.texi | |||
| @@ -665,17 +665,16 @@ for details. | |||
| 665 | 665 | ||
| 666 | @defun window-list &optional frame minibuf window | 666 | @defun window-list &optional frame minibuf window |
| 667 | This function returns a list of the windows on @var{frame}, starting | 667 | This function returns a list of the windows on @var{frame}, starting |
| 668 | with @var{window}. If @var{frame} is @code{nil} or omitted, the | 668 | with @var{window}. If @var{frame} is @code{nil} or omitted, |
| 669 | selected frame is used instead; if @var{window} is @code{nil} or | 669 | @code{window-list} uses the selected frame instead; if @var{window} is |
| 670 | omitted, the selected window is used instead. | 670 | @code{nil} or omitted, it uses the selected window. |
| 671 | 671 | ||
| 672 | The value of @var{minibuf} determines if the minibuffer window will be | 672 | The value of @var{minibuf} determines if the minibuffer window is |
| 673 | included in the result list. If @var{minibuf} is @code{t}, the | 673 | included in the result list. If @var{minibuf} is @code{t}, the result |
| 674 | minibuffer window will be included, even if it isn't active. If | 674 | always includes the minibuffer window. If @var{minibuf} is @code{nil} |
| 675 | @var{minibuf} is @code{nil} or omitted, the minibuffer window will | 675 | or omitted, that includes the minibuffer window if it is active. If |
| 676 | only be included in the list if it is active. If @var{minibuf} is | 676 | @var{minibuf} is neither @code{nil} nor @code{t}, the result never |
| 677 | neither @code{nil} nor @code{t}, the minibuffer window is not | 677 | includes the minibuffer window. |
| 678 | included, whether or not it is active. | ||
| 679 | @end defun | 678 | @end defun |
| 680 | 679 | ||
| 681 | @node Buffers and Windows | 680 | @node Buffers and Windows |