aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2004-12-02 23:24:43 +0000
committerRichard M. Stallman2004-12-02 23:24:43 +0000
commit0c2cb7536e169fc375d94ff1c1b93c6733f4e1da (patch)
tree133eebcc83de9f3ee66fdcb7c4cdc5d2771445ac /src
parent7e1637c2cb99d07d17cd8101e26acee2907a5a0a (diff)
downloademacs-0c2cb7536e169fc375d94ff1c1b93c6733f4e1da.tar.gz
emacs-0c2cb7536e169fc375d94ff1c1b93c6733f4e1da.zip
(Fget_lru_window, Fget_largest_window): Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/window.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c
index f7a7a4c438c..6fe547b97c7 100644
--- a/src/window.c
+++ b/src/window.c
@@ -2097,6 +2097,8 @@ DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
2097 doc: /* Return the window least recently selected or used for display. 2097 doc: /* Return the window least recently selected or used for display.
2098Return a full-width window if possible. 2098Return a full-width window if possible.
2099A minibuffer window is never a candidate. 2099A minibuffer window is never a candidate.
2100A dedicated window is never a candidate, so if all windows are dedicated,
2101the value is nil.
2100If optional argument FRAME is `visible', search all visible frames. 2102If optional argument FRAME is `visible', search all visible frames.
2101If FRAME is 0, search all visible and iconified frames. 2103If FRAME is 0, search all visible and iconified frames.
2102If FRAME is t, search all frames. 2104If FRAME is t, search all frames.
@@ -2117,6 +2119,8 @@ If FRAME is a frame, search only that frame. */)
2117DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0, 2119DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
2118 doc: /* Return the largest window in area. 2120 doc: /* Return the largest window in area.
2119A minibuffer window is never a candidate. 2121A minibuffer window is never a candidate.
2122A dedicated window is never a candidate, so if all windows are dedicated,
2123the value is nil.
2120If optional argument FRAME is `visible', search all visible frames. 2124If optional argument FRAME is `visible', search all visible frames.
2121If FRAME is 0, search all visible and iconified frames. 2125If FRAME is 0, search all visible and iconified frames.
2122If FRAME is t, search all frames. 2126If FRAME is t, search all frames.