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 [EMACS_22_BASE]


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/emulation/vi.el, v [EMACS_22_BASE]
Date: Sun, 12 Aug 2007 18:05:08 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Branch:         EMACS_22_BASE
Changes by:     Richard M. Stallman <rms>       07/08/12 18:05:08

Index: vi.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/emulation/vi.el,v
retrieving revision 1.28
retrieving revision 1.28.2.1
diff -u -b -r1.28 -r1.28.2.1
--- vi.el       10 Dec 2006 23:49:36 -0000      1.28
+++ vi.el       12 Aug 2007 18:05:08 -0000      1.28.2.1
@@ -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]