the enabled_p flag of the glyph row at window_end_vpos to 0.
(handle_single_display_prop): Fix last change.
+2001-01-03 Gerd Moellmann <gerd@gnu.org>
+
+ * xdisp.c (try_window_reusing_current_matrix): Fix bug setting
+ the enabled_p flag of the glyph row at window_end_vpos to 0.
+ (handle_single_display_prop): Fix last change.
+
2001-01-02 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* window.c (Frecenter): Doc fix.
if (FRAME_TERMCAP_P (it->f)
|| FRAME_MSDOS_P (it->f)
|| FRAME_W32_CONSOLE_P (it->f))
+ return 0;
value = XCAR (XCDR (prop));
if (NUMBERP (value) && XFLOATINT (value) > 0)
if (FRAME_TERMCAP_P (it->f)
|| FRAME_MSDOS_P (it->f)
|| FRAME_W32_CONSOLE_P (it->f))
+ return 0;
#ifdef HAVE_WINDOW_SYSTEM
value = XCAR (XCDR (prop));
/* Disable lines in the current matrix which are now
below the window. */
- for (; row < bottom_row; ++row)
+ for (++row; row < bottom_row; ++row)
row->enabled_p = 0;
}