1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 12:20:39 -08:00

(sync_frame_with_window_matrix_rows): Disable frame rows

whose corresponding window rows have been disabled in
try_window_id.
This commit is contained in:
Gerd Moellmann 1999-09-20 13:02:31 +00:00
parent f3751a65aa
commit f002db9312

View file

@ -9713,8 +9713,15 @@ sync_frame_with_window_matrix_rows (w)
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;
}
}