]> git.eshelyaron.com Git - emacs.git/commitdiff
(vi-next-line): Ignore return value of line-move.
authorRichard M. Stallman <rms@gnu.org>
Sun, 12 Aug 2007 18:05:08 +0000 (18:05 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 12 Aug 2007 18:05:08 +0000 (18:05 +0000)
lisp/emulation/vi.el

index 54fb2d1e997ed1ce9ae01ebdcdc201f638abb2b0..977a798080331addef4db5dc01866b5490d5e452 100644 (file)
@@ -788,7 +788,7 @@ The given COUNT is remembered for future scrollings."
   "Go down count lines, try to keep at the same column."
   (interactive "p")
   (setq this-command 'next-line)       ; this is a needed trick
-  (if (= (point) (or (line-move count) (point)))
+  (if (= (point) (progn (line-move count) (point)))
       (ding)                           ; no moving, already at end of buffer
     (setq last-command 'next-line)))