changeset 25778:9a6099957160

(sync_frame_with_window_matrix_rows): Disable frame rows whose corresponding window rows have been disabled in try_window_id.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 20 Sep 1999 13:02:31 +0000
parents dabc57e3628f
children 4065a85ee695
files src/xdisp.c
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/xdisp.c	Mon Sep 20 11:25:06 1999 +0000
+++ b/src/xdisp.c	Mon Sep 20 13:02:31 1999 +0000
@@ -9713,8 +9713,15 @@
   while (window_row < window_row_end)
     {
       int area;
+      
       for (area = LEFT_MARGIN_AREA; area <= LAST_AREA; ++area)
 	frame_row->glyphs[area] = window_row->glyphs[area];
+
+      /* Disable frame rows whose corresponding window rows have
+	 been disabled in try_window_id.  */
+      if (!window_row->enabled_p)
+	frame_row->enabled_p = 0;
+      
       ++window_row, ++frame_row;
     }
 }