Mercurial > emacs
diff src/indent.c @ 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 | 901d646738f9 |
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) {
