From: Pavel Janík Date: Thu, 25 Apr 2002 12:15:14 +0000 (+0000) Subject: (Fvertical_motion): Fix last change. X-Git-Tag: ttn-vms-21-2-B4~15413 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6f4426332dab4a0bd2c587d4877db45817062b9f;p=emacs.git (Fvertical_motion): Fix last change. --- 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));