emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/play/landmark.el,v


From: Dan Nicolaescu
Subject: [Emacs-diffs] Changes to emacs/lisp/play/landmark.el,v
Date: Sat, 20 Oct 2007 06:30:30 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   07/10/20 06:30:19

Index: play/landmark.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/play/landmark.el,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -b -r1.36 -r1.37
--- play/landmark.el    26 Jul 2007 05:27:22 -0000      1.36
+++ play/landmark.el    20 Oct 2007 06:30:17 -0000      1.37
@@ -1052,13 +1052,13 @@
   "Move point down one row on the Lm board."
   (interactive)
   (if (< (lm-point-y) lm-board-height)
-      (next-line 1)));;; lm-square-height)))
+      (forward-line 1)));;; lm-square-height)))
 
 (defun lm-move-up ()
   "Move point up one row on the Lm board."
   (interactive)
   (if (> (lm-point-y) 1)
-      (previous-line lm-square-height)))
+      (forward-line (- lm-square-height))))
 
 (defun lm-move-ne ()
   "Move point North East on the Lm board."




reply via email to

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