From: Chong Yidong Date: Wed, 17 Sep 2008 20:34:16 +0000 (+0000) Subject: Minor fix to last change. X-Git-Tag: emacs-pretest-23.0.90~2870 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=051facecbf0ea610a9a1311dc877eac37acdc3fb;p=emacs.git Minor fix to last change. --- diff --git a/src/indent.c b/src/indent.c index ba4787aa1c5..d30d2dc7293 100644 --- a/src/indent.c +++ b/src/indent.c @@ -2133,7 +2133,7 @@ whether or not it is currently displayed in some window. */) 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) {