summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2002-04-25 12:15:14 +0000
committerPavel Janík <Pavel@Janik.cz>2002-04-25 12:15:14 +0000
commit6f4426332dab4a0bd2c587d4877db45817062b9f (patch)
treebd693128bdffee003b74d5e5ae9ab341b32c0a20 /src/indent.c
parent3a46a5dec0ae7dc2145edfced2095ca5861cc05f (diff)
downloademacs-6f4426332dab4a0bd2c587d4877db45817062b9f.tar.gz
(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 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));