]> git.eshelyaron.com Git - emacs.git/commitdiff
(try_window_reusing_current_matrix): Don't try to reuse
authorGerd Moellmann <gerd@gnu.org>
Wed, 28 Jun 2000 20:29:56 +0000 (20:29 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 28 Jun 2000 20:29:56 +0000 (20:29 +0000)
 the display if windows_or_buffers_changed.

src/xdisp.c

index 68942eed1fae43b7e4dd62e6e9229ab8af050593..b9941f956ffa7ad590047d18799f097631d690e2 100644 (file)
@@ -9507,8 +9507,12 @@ try_window_reusing_current_matrix (w)
   struct glyph_row *start_row;
   int start_vpos, min_y, max_y;
 
-  /* Right now this function doesn't handle terminal frames.  */
-  if (!FRAME_WINDOW_P (f))
+  
+  if (/* This function doesn't handle terminal frames.  */
+      !FRAME_WINDOW_P (f)
+      /* Don't try to reuse the display if windows have been split
+        or such.  */
+      || windows_or_buffers_changed)
     return 0;
 
   /* Can't do this if region may have changed.  */