1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-23 18:47:57 +00:00

Fix last change.

This commit is contained in:
Kim F. Storm 2005-01-18 12:41:55 +00:00
parent c6576d9d7a
commit a348a963d3

View 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;
}