aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-23 22:44:26 +0000
committerGerd Moellmann1999-10-23 22:44:26 +0000
commit2a3d7146168ebec675d12ea3db199f7696f68ab7 (patch)
tree18315237b9f6e509d66f80865a47ee65955039f6 /src
parent5db9e620affdf3fc9233e85d25a5ca25f0a8e7f3 (diff)
downloademacs-2a3d7146168ebec675d12ea3db199f7696f68ab7.tar.gz
emacs-2a3d7146168ebec675d12ea3db199f7696f68ab7.zip
(Fnext_window): Add a QUIT in the loop.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/window.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ae314a7209e..fbf1f1aeb99 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
11999-10-24 Gerd Moellmann <gerd@gnu.org>
2
3 * window.c (Fnext_window): Add a QUIT in the loop.
4
11999-10-23 Gerd Moellmann <gerd@gnu.org> 51999-10-23 Gerd Moellmann <gerd@gnu.org>
2 6
3 * Makefile.in (bootstrap, bootstrap-emacs, bootstrap-temacs): 7 * Makefile.in (bootstrap, bootstrap-emacs, bootstrap-temacs):
diff --git a/src/window.c b/src/window.c
index 683cdc5b363..493b2cf018d 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1232,6 +1232,8 @@ DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
1232 window = XWINDOW (window)->vchild; 1232 window = XWINDOW (window)->vchild;
1233 else break; 1233 else break;
1234 } 1234 }
1235
1236 QUIT;
1235 } 1237 }
1236 /* Which windows are acceptable? 1238 /* Which windows are acceptable?
1237 Exit the loop and accept this window if 1239 Exit the loop and accept this window if