]> git.eshelyaron.com Git - emacs.git/commitdiff
(redisplay_window): YABX (yet another bogus xassert).
authorKim F. Storm <storm@cua.dk>
Tue, 1 Mar 2005 23:21:52 +0000 (23:21 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 1 Mar 2005 23:21:52 +0000 (23:21 +0000)
Reported by David Kastrup.

src/xdisp.c

index 613f6f09b44d7bd27f5b771d866007e558a7f16e..71fca1b5eecba667bf0cfbdd09928eae296c2996 100644 (file)
@@ -12286,7 +12286,11 @@ redisplay_window (window, just_this_one_p)
     {
       init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
       move_it_vertically_backward (&it, 0);
+#if 0
+      /* I think this assert is bogus if buffer contains
+        invisible text or images.  KFS.  */
       xassert (IT_CHARPOS (it) <= PT);
+#endif
       it.current_y = 0;
     }