diff options
| author | Karoly Lorentey | 2007-04-22 12:12:29 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2007-04-22 12:12:29 +0000 |
| commit | e18c709364b095ea0be8ecabe458ac9a642a252f (patch) | |
| tree | efe814a842f932f387b3947c572bf43a548d17ef /src/window.c | |
| parent | 81088e260b086fe28f36964f32b6338210ec6fd8 (diff) | |
| parent | 9f25e707aaad5ed14a9448e9c5d345ff0bdbc5a7 (diff) | |
| download | emacs-e18c709364b095ea0be8ecabe458ac9a642a252f.tar.gz emacs-e18c709364b095ea0be8ecabe458ac9a642a252f.zip | |
Merged from emacs@sv.gnu.org
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-660
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-661
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-662
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-663
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-664
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-665
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-666
Fix read-only prompt problem in isearch
* emacs@sv.gnu.org/emacs--devo--0--patch-667
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-668
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-669
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-670
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-671
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-672
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-673
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-206
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-207
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-208
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-600
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/window.c b/src/window.c index 1554ef7ec3b..94e56d10371 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -3614,11 +3614,12 @@ The variables `special-display-buffer-names', | |||
| 3614 | `same-window-regexps' customize how certain buffer names are handled. | 3614 | `same-window-regexps' customize how certain buffer names are handled. |
| 3615 | The latter two take effect only if NOT-THIS-WINDOW is nil. | 3615 | The latter two take effect only if NOT-THIS-WINDOW is nil. |
| 3616 | 3616 | ||
| 3617 | If optional argument FRAME is `visible', search all visible frames. | 3617 | If optional argument FRAME is `visible', check all visible frames |
| 3618 | If FRAME is 0, search all visible and iconified frames. | 3618 | for a window to use. |
| 3619 | If FRAME is t, search all frames. | 3619 | If FRAME is 0, check all visible and iconified frames. |
| 3620 | If FRAME is a frame, search only that frame. | 3620 | If FRAME is t, check all frames. |
| 3621 | If FRAME is nil, search only the selected frame | 3621 | If FRAME is a frame, check only that frame. |
| 3622 | If FRAME is nil, check only the selected frame | ||
| 3622 | (actually the last nonminibuffer frame), | 3623 | (actually the last nonminibuffer frame), |
| 3623 | unless `pop-up-frames' or `display-buffer-reuse-frames' is non-nil, | 3624 | unless `pop-up-frames' or `display-buffer-reuse-frames' is non-nil, |
| 3624 | which means search visible and iconified frames. | 3625 | which means search visible and iconified frames. |