summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2008-09-17 20:34:16 +0000
committerChong Yidong <cyd@stupidchicken.com>2008-09-17 20:34:16 +0000
commit79198d91b0486242d1bbac364587e9029a39be9e (patch)
tree7e610ba8a3149556c399eb143dbfe310c8967813 /src/indent.c
parentc04deb2f8335a3439549ce19a0e115cf4d8b7b5b (diff)
downloademacs-79198d91b0486242d1bbac364587e9029a39be9e.tar.gz
Minor fix to last change.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c2
1 files changed, 1 insertions, 1 deletions
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)
{