]> code.delx.au - gnu-emacs/commitdiff
(Fvertical_motion): Fix last change.
authorPavel Janík <Pavel@Janik.cz>
Thu, 25 Apr 2002 12:15:14 +0000 (12:15 +0000)
committerPavel Janík <Pavel@Janik.cz>
Thu, 25 Apr 2002 12:15:14 +0000 (12:15 +0000)
src/ChangeLog
src/indent.c

index f0549637b6f7cccf98720151878b8e07a43346ff..5a7dc54a66941dd4e3d86231406e71a8b642eb40 100644 (file)
@@ -1,3 +1,7 @@
+2002-04-25  Pavel Jan\e,Bm\e(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
index e2f680760756cdd699638578c494d268f0167677..e6f6c31a277704e7df78cb3f534c13f70aeaee10 100644 (file)
@@ -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));