diff options
| author | Miles Bader | 2004-08-10 07:46:40 +0000 |
|---|---|---|
| committer | Miles Bader | 2004-08-10 07:46:40 +0000 |
| commit | 1322bdcbf48485396604a6196ad953e4ac96ab19 (patch) | |
| tree | 507b63c76d153ce09636fadb88057de967cffe12 /src/window.c | |
| parent | cc02ceeea1c29881f88c715e6bfa6e80d7bfb2be (diff) | |
| parent | 72f2b52554110518f03f81556c2192413700ad97 (diff) | |
| download | emacs-1322bdcbf48485396604a6196ad953e4ac96ab19.tar.gz emacs-1322bdcbf48485396604a6196ad953e4ac96ab19.zip | |
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-29
Merge from lorentey@elte.hu--2004/emacs--multi-tty--0, emacs--cvs-trunk--0
Patches applied:
* lorentey@elte.hu--2004/emacs--multi-tty--0--patch-224
Added sorted-doc to backup regex in lib-src.
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-479
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-482
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-483
Build-in-place tweak
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-484
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-485
Update from CVS
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index e2c3fe51744..c64902501db 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -1828,7 +1828,7 @@ window_list_1 (window, minibuf, all_frames) | |||
| 1828 | rest = Fmemq (window, list); | 1828 | rest = Fmemq (window, list); |
| 1829 | if (!NILP (rest) && !EQ (rest, list)) | 1829 | if (!NILP (rest) && !EQ (rest, list)) |
| 1830 | { | 1830 | { |
| 1831 | for (tail = list; XCDR (tail) != rest; tail = XCDR (tail)) | 1831 | for (tail = list; !EQ (XCDR (tail), rest); tail = XCDR (tail)) |
| 1832 | ; | 1832 | ; |
| 1833 | XSETCDR (tail, Qnil); | 1833 | XSETCDR (tail, Qnil); |
| 1834 | list = nconc2 (rest, list); | 1834 | list = nconc2 (rest, list); |