# HG changeset patch # User Gerd Moellmann # Date 962224196 0 # Node ID e4256ac89b92e911ccfd84178cc45c26abccbfa9 # Parent 171ba59e1cb0c2b78aca84f3e95f25677f9fb4eb (try_window_reusing_current_matrix): Don't try to reuse the display if windows_or_buffers_changed. diff -r 171ba59e1cb0 -r e4256ac89b92 src/xdisp.c --- a/src/xdisp.c Wed Jun 28 20:28:50 2000 +0000 +++ b/src/xdisp.c Wed Jun 28 20:29:56 2000 +0000 @@ -9507,8 +9507,12 @@ 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. */