Mercurial > emacs
changeset 59620:1bf354073f0c
Fix last change.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Tue, 18 Jan 2005 12:41:55 +0000 |
parents | 4b1b522ba215 |
children | 3cc63cc58421 |
files | src/xdisp.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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; }