emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/term/sun.el,v


From: Dan Nicolaescu
Subject: [Emacs-diffs] Changes to emacs/lisp/term/sun.el,v
Date: Sun, 23 Sep 2007 00:38:46 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   07/09/23 00:38:45

Index: term/sun.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/term/sun.el,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -b -r1.23 -r1.24
--- term/sun.el 21 Sep 2007 03:55:20 -0000      1.23
+++ term/sun.el 23 Sep 2007 00:38:44 -0000      1.24
@@ -32,12 +32,12 @@
 
 (defun scroll-down-in-place (n)
   (interactive "p")
-  (previous-line n)
+  (forward-line (- n))
   (scroll-down n))
 
 (defun scroll-up-in-place (n)
   (interactive "p")
-  (next-line n)
+  (forward-line n)
   (scroll-up n))
 
 (defun kill-region-and-unmark (beg end)




reply via email to

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