From: Kim F. Storm Date: Tue, 18 Jan 2005 12:41:55 +0000 (+0000) Subject: Fix last change. X-Git-Tag: ttn-vms-21-2-B4~2686 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a348a963d388bd99b572ae2519a408d621a1f384;p=emacs.git Fix last change. --- 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; }