summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog4
-rw-r--r--src/indent.c2
2 files changed, 5 insertions, 1 deletions
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 <Pavel@Janik.cz>
+
+ * indent.c (Fvertical_motion): Fix last change.
+
2002-04-25 Gerd Moellmann <gerd@gnu.org>
* 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));