comparison src/xdisp.c @ 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 a6041d251b77
comparison
equal deleted inserted replaced
25777:dabc57e3628f 25778:9a6099957160
9711 window_row_end = window_row + w->current_matrix->nrows; 9711 window_row_end = window_row + w->current_matrix->nrows;
9712 frame_row = f->current_matrix->rows + XFASTINT (w->top); 9712 frame_row = f->current_matrix->rows + XFASTINT (w->top);
9713 while (window_row < window_row_end) 9713 while (window_row < window_row_end)
9714 { 9714 {
9715 int area; 9715 int area;
9716
9716 for (area = LEFT_MARGIN_AREA; area <= LAST_AREA; ++area) 9717 for (area = LEFT_MARGIN_AREA; area <= LAST_AREA; ++area)
9717 frame_row->glyphs[area] = window_row->glyphs[area]; 9718 frame_row->glyphs[area] = window_row->glyphs[area];
9719
9720 /* Disable frame rows whose corresponding window rows have
9721 been disabled in try_window_id. */
9722 if (!window_row->enabled_p)
9723 frame_row->enabled_p = 0;
9724
9718 ++window_row, ++frame_row; 9725 ++window_row, ++frame_row;
9719 } 9726 }
9720 } 9727 }
9721 9728
9722 9729