comparison src/xdisp.c @ 29981:e4256ac89b92

(try_window_reusing_current_matrix): Don't try to reuse the display if windows_or_buffers_changed.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 28 Jun 2000 20:29:56 +0000
parents 8aa954de8db9
children 8dc78ef485a4
comparison
equal deleted inserted replaced
29980:171ba59e1cb0 29981:e4256ac89b92
9505 struct glyph_row *last_text_row; 9505 struct glyph_row *last_text_row;
9506 struct glyph_row *last_reused_text_row; 9506 struct glyph_row *last_reused_text_row;
9507 struct glyph_row *start_row; 9507 struct glyph_row *start_row;
9508 int start_vpos, min_y, max_y; 9508 int start_vpos, min_y, max_y;
9509 9509
9510 /* Right now this function doesn't handle terminal frames. */ 9510
9511 if (!FRAME_WINDOW_P (f)) 9511 if (/* This function doesn't handle terminal frames. */
9512 !FRAME_WINDOW_P (f)
9513 /* Don't try to reuse the display if windows have been split
9514 or such. */
9515 || windows_or_buffers_changed)
9512 return 0; 9516 return 0;
9513 9517
9514 /* Can't do this if region may have changed. */ 9518 /* Can't do this if region may have changed. */
9515 if ((!NILP (Vtransient_mark_mode) 9519 if ((!NILP (Vtransient_mark_mode)
9516 && !NILP (current_buffer->mark_active)) 9520 && !NILP (current_buffer->mark_active))