From 6f4426332dab4a0bd2c587d4877db45817062b9f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Thu, 25 Apr 2002 12:15:14 +0000 Subject: [PATCH] (Fvertical_motion): Fix last change. --- src/ChangeLog | 4 ++++ src/indent.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index f0549637b6f..5a7dc54a669 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-04-25 Pavel Jan,Bm(Bk + + * indent.c (Fvertical_motion): Fix last change. + 2002-04-25 Gerd Moellmann * indent.c (Fvertical_motion): Move to the start of the line diff --git a/src/indent.c b/src/indent.c index e2f68076075..e6f6c31a277 100644 --- a/src/indent.c +++ b/src/indent.c @@ -2026,7 +2026,7 @@ whether or not it is currently displayed in some window. */) end position is really at some X > 0, the same X that PT had. */ move_it_by_lines (&it, 0, 0); - if (XINT (lines) !+ 0) + if (XINT (lines) != 0) move_it_by_lines (&it, XINT (lines), 0); SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it)); -- 2.39.2