aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-08-09 09:37:32 +0000
committerGerd Moellmann2001-08-09 09:37:32 +0000
commit99332eb693d49e96e3a14ec8bc57c4d1ab575691 (patch)
tree5773254ccee2694d46e089a385b812aaf3c1cdc8 /src
parent3bdbead3dd7391c6198c6be03c4c787ac80dee85 (diff)
downloademacs-99332eb693d49e96e3a14ec8bc57c4d1ab575691.tar.gz
emacs-99332eb693d49e96e3a14ec8bc57c4d1ab575691.zip
(mark_window_display_accurate_1): Remove an assertion.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index b5a28cb826a..4d51cc4bdca 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -9005,9 +9005,11 @@ mark_window_display_accurate_1 (w, accurate_p)
9005 if (accurate_p) 9005 if (accurate_p)
9006 { 9006 {
9007 w->window_end_valid = w->buffer; 9007 w->window_end_valid = w->buffer;
9008#if 0 /* This is incorrect with variable-height lines. */
9008 xassert (XINT (w->window_end_vpos) 9009 xassert (XINT (w->window_end_vpos)
9009 < (XINT (w->height) 9010 < (XINT (w->height)
9010 - (WINDOW_WANTS_MODELINE_P (w) ? 1 : 0))); 9011 - (WINDOW_WANTS_MODELINE_P (w) ? 1 : 0)));
9012#endif
9011 w->update_mode_line = Qnil; 9013 w->update_mode_line = Qnil;
9012 } 9014 }
9013} 9015}