1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-04 11:40:22 +00:00

(Cyclic Window Ordering): Clarify window-list.

This commit is contained in:
Richard M. Stallman 2005-04-23 16:22:02 +00:00
parent c50f15d05a
commit 658819b69f

View File

@ -665,17 +665,16 @@ for details.
@defun window-list &optional frame minibuf window @defun window-list &optional frame minibuf window
This function returns a list of the windows on @var{frame}, starting This function returns a list of the windows on @var{frame}, starting
with @var{window}. If @var{frame} is @code{nil} or omitted, the with @var{window}. If @var{frame} is @code{nil} or omitted,
selected frame is used instead; if @var{window} is @code{nil} or @code{window-list} uses the selected frame instead; if @var{window} is
omitted, the selected window is used instead. @code{nil} or omitted, it uses the selected window.
The value of @var{minibuf} determines if the minibuffer window will be The value of @var{minibuf} determines if the minibuffer window is
included in the result list. If @var{minibuf} is @code{t}, the included in the result list. If @var{minibuf} is @code{t}, the result
minibuffer window will be included, even if it isn't active. If always includes the minibuffer window. If @var{minibuf} is @code{nil}
@var{minibuf} is @code{nil} or omitted, the minibuffer window will or omitted, that includes the minibuffer window if it is active. If
only be included in the list if it is active. If @var{minibuf} is @var{minibuf} is neither @code{nil} nor @code{t}, the result never
neither @code{nil} nor @code{t}, the minibuffer window is not includes the minibuffer window.
included, whether or not it is active.
@end defun @end defun
@node Buffers and Windows @node Buffers and Windows