Mercurial > emacs
changeset 98212:3b2bee2b95a4
Minor fix to last change.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 17 Sep 2008 20:34:16 +0000 |
parents | bc06a22accf3 |
children | 52d26067a946 |
files | src/indent.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/indent.c Wed Sep 17 20:29:04 2008 +0000 +++ b/src/indent.c Wed Sep 17 20:34:16 2008 +0000 @@ -2133,7 +2133,7 @@ which might span multiple screen lines (e.g., if it's on a multi-line display string). We want to start from the last line that it occupies. */ - if (PT < ZV) + if (it_start < ZV) { while (IT_CHARPOS (it) <= it_start) {