summaryrefslogtreecommitdiff
path: root/lispref/windows.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-04-23 16:22:02 +0000
committerRichard M. Stallman <rms@gnu.org>2005-04-23 16:22:02 +0000
commit658819b69f402129be34116e356cfc661e3fe53f (patch)
treef7a256980a117d1f2b58f06370c612fbc4a88bb0 /lispref/windows.texi
parentc50f15d05a0f7da0a2e5a36e9bf8c626c5817d6b (diff)
downloademacs-658819b69f402129be34116e356cfc661e3fe53f.tar.gz
(Cyclic Window Ordering): Clarify window-list.
Diffstat (limited to 'lispref/windows.texi')
-rw-r--r--lispref/windows.texi21
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.
@defun window-list &optional frame minibuf window
This function returns a list of the windows on @var{frame}, starting
-with @var{window}. If @var{frame} is @code{nil} or omitted, the
-selected frame is used instead; if @var{window} is @code{nil} or
-omitted, the selected window is used instead.
-
-The value of @var{minibuf} determines if the minibuffer window will be
-included in the result list. If @var{minibuf} is @code{t}, the
-minibuffer window will be included, even if it isn't active. If
-@var{minibuf} is @code{nil} or omitted, the minibuffer window will
-only be included in the list if it is active. If @var{minibuf} is
-neither @code{nil} nor @code{t}, the minibuffer window is not
-included, whether or not it is active.
+with @var{window}. If @var{frame} is @code{nil} or omitted,
+@code{window-list} uses the selected frame instead; if @var{window} is
+@code{nil} or omitted, it uses the selected window.
+
+The value of @var{minibuf} determines if the minibuffer window is
+included in the result list. If @var{minibuf} is @code{t}, the result
+always includes the minibuffer window. If @var{minibuf} is @code{nil}
+or omitted, that includes the minibuffer window if it is active. If
+@var{minibuf} is neither @code{nil} nor @code{t}, the result never
+includes the minibuffer window.
@end defun
@node Buffers and Windows