(Fx_create_frame): Clear Vwindow_list.
author |
Gerd Moellmann <gerd@gnu.org> |
date |
Tue, 06 Mar 2001 19:33:47 +0000 |
parents |
4567e1729217 |
children |
d76b8156161b |
files |
src/w32fns.c src/xfns.c |
diffstat |
2 files changed, 10 insertions(+), 0 deletions(-)
[+]
|
line diff
--- a/src/w32fns.c Tue Mar 06 17:01:42 2001 +0000
+++ b/src/w32fns.c Tue Mar 06 19:33:47 2001 +0000
@@ -5462,6 +5462,11 @@
;
}
UNGCPRO;
+
+ /* Make sure windows on this frame appear in calls to next-window
+ and similar functions. */
+ Vwindow_list = Qnil;
+
return unbind_to (count, frame);
}
--- a/src/xfns.c Tue Mar 06 17:01:42 2001 +0000
+++ b/src/xfns.c Tue Mar 06 19:33:47 2001 +0000
@@ -4455,6 +4455,11 @@
}
UNGCPRO;
+
+ /* Make sure windows on this frame appear in calls to next-window
+ and similar functions. */
+ Vwindow_list = Qnil;
+
return unbind_to (count, frame);
}