aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-03-01 23:21:52 +0000
committerKim F. Storm2005-03-01 23:21:52 +0000
commit527d43c2bab3846a92b037c8e3370d12154b3cee (patch)
tree2ff557eabc5d19467411bd589ad2f0f608bbaf04
parent0870514c248c4008b5be1836103b3fde64015cef (diff)
downloademacs-527d43c2bab3846a92b037c8e3370d12154b3cee.tar.gz
emacs-527d43c2bab3846a92b037c8e3370d12154b3cee.zip
(redisplay_window): YABX (yet another bogus xassert).
Reported by David Kastrup.
-rw-r--r--src/xdisp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 613f6f09b44..71fca1b5eec 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -12286,7 +12286,11 @@ redisplay_window (window, just_this_one_p)
12286 { 12286 {
12287 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID); 12287 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
12288 move_it_vertically_backward (&it, 0); 12288 move_it_vertically_backward (&it, 0);
12289#if 0
12290 /* I think this assert is bogus if buffer contains
12291 invisible text or images. KFS. */
12289 xassert (IT_CHARPOS (it) <= PT); 12292 xassert (IT_CHARPOS (it) <= PT);
12293#endif
12290 it.current_y = 0; 12294 it.current_y = 0;
12291 } 12295 }
12292 12296