diff options
| author | Kenichi Handa <handa@m17n.org> | 2008-09-08 05:46:36 +0000 |
|---|---|---|
| committer | Kenichi Handa <handa@m17n.org> | 2008-09-08 05:46:36 +0000 |
| commit | 187bc86f15320f5680552b8bd692a62fb1a4b3ba (patch) | |
| tree | 1fe9fbdd62f77807b19f9602b0b909556682992d | |
| parent | 29c068d1d1dbbe78aff917abddd775711c668902 (diff) | |
| download | emacs-187bc86f15320f5680552b8bd692a62fb1a4b3ba.tar.gz | |
(Fvertical_motion): Be sure to set it_overshoot_expected if
it.cmp_it.id is non-nengative.
| -rw-r--r-- | src/indent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c index 25d41a66f59..809f775a221 100644 --- a/src/indent.c +++ b/src/indent.c @@ -2070,7 +2070,7 @@ whether or not it is currently displayed in some window. */) { if (it.cmp_it.id >= 0) it_overshoot_expected = 1; - if (it.method == GET_FROM_STRING) + else if (it.method == GET_FROM_STRING) { const char *s = SDATA (it.string); const char *e = s + SBYTES (it.string); |
