diff options
| author | Richard M. Stallman | 2004-12-02 23:24:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-12-02 23:24:43 +0000 |
| commit | 0c2cb7536e169fc375d94ff1c1b93c6733f4e1da (patch) | |
| tree | 133eebcc83de9f3ee66fdcb7c4cdc5d2771445ac /src | |
| parent | 7e1637c2cb99d07d17cd8101e26acee2907a5a0a (diff) | |
| download | emacs-0c2cb7536e169fc375d94ff1c1b93c6733f4e1da.tar.gz emacs-0c2cb7536e169fc375d94ff1c1b93c6733f4e1da.zip | |
(Fget_lru_window, Fget_largest_window): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 4 |
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. |
| 2098 | Return a full-width window if possible. | 2098 | Return a full-width window if possible. |
| 2099 | A minibuffer window is never a candidate. | 2099 | A minibuffer window is never a candidate. |
| 2100 | A dedicated window is never a candidate, so if all windows are dedicated, | ||
| 2101 | the value is nil. | ||
| 2100 | If optional argument FRAME is `visible', search all visible frames. | 2102 | If optional argument FRAME is `visible', search all visible frames. |
| 2101 | If FRAME is 0, search all visible and iconified frames. | 2103 | If FRAME is 0, search all visible and iconified frames. |
| 2102 | If FRAME is t, search all frames. | 2104 | If FRAME is t, search all frames. |
| @@ -2117,6 +2119,8 @@ If FRAME is a frame, search only that frame. */) | |||
| 2117 | DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0, | 2119 | DEFUN ("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. |
| 2119 | A minibuffer window is never a candidate. | 2121 | A minibuffer window is never a candidate. |
| 2122 | A dedicated window is never a candidate, so if all windows are dedicated, | ||
| 2123 | the value is nil. | ||
| 2120 | If optional argument FRAME is `visible', search all visible frames. | 2124 | If optional argument FRAME is `visible', search all visible frames. |
| 2121 | If FRAME is 0, search all visible and iconified frames. | 2125 | If FRAME is 0, search all visible and iconified frames. |
| 2122 | If FRAME is t, search all frames. | 2126 | If FRAME is t, search all frames. |