]> git.eshelyaron.com Git - emacs.git/commitdiff
(move_it_vertically_backward): Eliminate two xasserts.
authorKim F. Storm <storm@cua.dk>
Mon, 21 Feb 2005 09:01:04 +0000 (09:01 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 21 Feb 2005 09:01:04 +0000 (09:01 +0000)
I think those asserts are bogus if buffer contains invisible text
or images.

src/xdisp.c

index 85044a3713d8980d601b5cdadb3d63644bba9ab9..eb1a7d75fcabfb3d3afba44f7b2fd7f7d6cb4d64 100644 (file)
@@ -6318,7 +6318,11 @@ move_it_vertically_backward (it, dy)
         value of nlines is > 0 if continuation lines were involved.  */
       if (nlines > 0)
        move_it_by_lines (it, nlines, 1);
+#if 0
+      /* I think this assert is bogus if buffer contains
+        invisible text or images.  KFS.  */
       xassert (IT_CHARPOS (*it) <= start_pos);
+#endif
     }
   else
     {
@@ -6367,7 +6371,11 @@ move_it_vertically_backward (it, dy)
              while (target_y >= line_bottom_y (it) && IT_CHARPOS (*it) < ZV);
            }
 
+#if 0
+         /* I think this assert is bogus if buffer contains
+            invisible text or images.  KFS.  */
          xassert (IT_CHARPOS (*it) >= BEGV);
+#endif
        }
     }
 }