aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-12-03 11:27:53 +0000
committerRichard M. Stallman2004-12-03 11:27:53 +0000
commit43954849f409ec1db056ff20291df616813a223b (patch)
tree637ffc36d977f6f403b5051f70fbdb17aeb21063
parent0e29c77ff5403aaa123de83f1f7784075d52b0ed (diff)
downloademacs-43954849f409ec1db056ff20291df616813a223b.tar.gz
emacs-43954849f409ec1db056ff20291df616813a223b.zip
(Selecting Windows): get-lru-window and
get-largest-window don't consider dedicated windows.
-rw-r--r--lispref/windows.texi12
1 files changed, 8 insertions, 4 deletions
diff --git a/lispref/windows.texi b/lispref/windows.texi
index 0bf3a9ed211..636d1d745cc 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -488,7 +488,9 @@ these. The selected window is always the most recently used window.
488 488
489The selected window can be the least recently used window if it is the 489The selected window can be the least recently used window if it is the
490only window. A newly created window becomes the least recently used 490only window. A newly created window becomes the least recently used
491window until it is selected. A minibuffer window is never a candidate. 491window until it is selected. A minibuffer window is never a
492candidate. Dedicated windows are never candidates, and if all
493existing windows are dedicated, the value is @code{nil}.
492 494
493The argument @var{frame} controls which windows are considered. 495The argument @var{frame} controls which windows are considered.
494 496
@@ -510,10 +512,12 @@ If it is a frame, consider windows on that frame.
510This function returns the window with the largest area (height times 512This function returns the window with the largest area (height times
511width). If there are no side-by-side windows, then this is the window 513width). If there are no side-by-side windows, then this is the window
512with the most lines. A minibuffer window is never a candidate. 514with the most lines. A minibuffer window is never a candidate.
515Dedicated windows are never candidates, and if all existing windows
516are dedicated, the value is @code{nil}.
513 517
514If there are two windows of the same size, then the function returns 518If there are two candidate windows of the same size, this function
515the window that is first in the cyclic ordering of windows (see 519prefers the one that comes first in the cyclic ordering of windows
516following section), starting from the selected window. 520(see following section), starting from the selected window.
517 521
518The argument @var{frame} controls which set of windows to 522The argument @var{frame} controls which set of windows to
519consider. See @code{get-lru-window}, above. 523consider. See @code{get-lru-window}, above.