]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fx_create_frame): Clear Vwindow_list.
authorGerd Moellmann <gerd@gnu.org>
Tue, 6 Mar 2001 19:33:47 +0000 (19:33 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 6 Mar 2001 19:33:47 +0000 (19:33 +0000)
src/w32fns.c
src/xfns.c

index 74aaf164becbfb20929ec3a1e83644236588dd6c..f3001649f8187f11c21d0307f32039124c345db9 100644 (file)
@@ -5462,6 +5462,11 @@ This function is an internal primitive--use `make-frame' instead.")
        ;
     }
   UNGCPRO;
+  
+  /* Make sure windows on this frame appear in calls to next-window
+     and similar functions.  */
+  Vwindow_list = Qnil;
+  
   return unbind_to (count, frame);
 }
 
index 8ed08ee75ffd90a6586159ed7b6fc4fac15b74dc..97c57382f4197db90310330b724a4e34604d8b6e 100644 (file)
@@ -4455,6 +4455,11 @@ This function is an internal primitive--use `make-frame' instead.")
     }
 
   UNGCPRO;
+
+  /* Make sure windows on this frame appear in calls to next-window
+     and similar functions.  */
+  Vwindow_list = Qnil;
+  
   return unbind_to (count, frame);
 }