]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change.
authorKim F. Storm <storm@cua.dk>
Tue, 18 Jan 2005 12:41:55 +0000 (12:41 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 18 Jan 2005 12:41:55 +0000 (12:41 +0000)
src/xdisp.c

index b0e2039a8c927b47a38a6772d172c947fb210951..d280124504d63d92056b75c57510b46ece6d8ed2 100644 (file)
@@ -20618,8 +20618,8 @@ fast_find_position (w, charpos, hpos, vpos, x, y, stop)
          glyph = end + prev->used[TEXT_AREA];
          while (--glyph >= end
                 && INTEGERP (glyph->object));
-         if (glyph < end
-             || !EQ (stop, glyph->object))
+         if (glyph >= end
+             && !EQ (stop, glyph->object))
            break;
          row = prev;
        }