aboutsummaryrefslogtreecommitdiffstats
path: root/src/indent.c
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2004-11-19 09:44:14 +0000
committerKim F. Storm <[email protected]>2004-11-19 09:44:14 +0000
commit97564b7ef490505baef1651c0ee35c8d52891c31 (patch)
tree4e55a18da2661675c488972457ed3df5cecfcc05 /src/indent.c
parentcbc34cb39b8524259513831d3cd5383ac788a682 (diff)
(Fvertical_motion): Fix 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 0b73751a5f..f4a383b6d0 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -2084,7 +2084,7 @@ whether or not it is currently displayed in some window. */)
/* Move back if we got too far. This may happen if
truncate-lines is on and PT is beyond right margin. */
- if (IT_CHARPOS (it) > PT && XINT (lines) > 0)
+ if (IT_CHARPOS (it) > PT && it.vpos > 0 && XINT (lines) > 0)
move_it_by_lines (&it, -1, 0);
it.vpos = 0;