From a348a963d388bd99b572ae2519a408d621a1f384 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Tue, 18 Jan 2005 12:41:55 +0000 Subject: [PATCH] Fix last change. --- src/xdisp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index b0e2039a8c9..d280124504d 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -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; } -- 2.39.5