Mercurial > emacs
changeset 44839:adbe6006df2b
(Fvertical_motion): Fix last change.
author | Pavel Janík <Pavel@Janik.cz> |
---|---|
date | Thu, 25 Apr 2002 12:13:58 +0000 |
parents | e16ca82dbf9c |
children | f0fef1c2081f |
files | src/indent.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/indent.c Thu Apr 25 10:39:57 2002 +0000 +++ b/src/indent.c Thu Apr 25 12:13:58 2002 +0000 @@ -2026,7 +2026,7 @@ 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));