changeset 60338:e040c58e568a

(redisplay_window): YABX (yet another bogus xassert). Reported by David Kastrup.
author Kim F. Storm <storm@cua.dk>
date Tue, 01 Mar 2005 23:21:52 +0000
parents 89ca59d2bd38
children 3cd3e3cf3529
files src/xdisp.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/xdisp.c	Tue Mar 01 23:20:49 2005 +0000
+++ b/src/xdisp.c	Tue Mar 01 23:21:52 2005 +0000
@@ -12286,7 +12286,11 @@
     {
       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;
     }