emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emulation/vi.el,v


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/emulation/vi.el,v
Date: Mon, 13 Aug 2007 13:42:54 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Miles Bader <miles>     07/08/13 13:41:28

Index: lisp/emulation/vi.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/emulation/vi.el,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -b -r1.28 -r1.29
--- lisp/emulation/vi.el        10 Dec 2006 23:49:36 -0000      1.28
+++ lisp/emulation/vi.el        13 Aug 2007 13:41:26 -0000      1.29
@@ -788,7 +788,7 @@
   "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)))
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]