# HG changeset patch # User Kim F. Storm # Date 1106052115 0 # Node ID 1bf354073f0cd48e5b218292217dc31caac07733 # Parent 4b1b522ba215dc790d17c6d96094dde6849af1b2 Fix last change. diff -r 4b1b522ba215 -r 1bf354073f0c src/xdisp.c --- a/src/xdisp.c Tue Jan 18 12:39:51 2005 +0000 +++ b/src/xdisp.c Tue Jan 18 12:41:55 2005 +0000 @@ -20618,8 +20618,8 @@ 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; }