emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/image-dired.el,v


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

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

Index: image-dired.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/image-dired.el,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- image-dired.el      4 Oct 2007 16:43:06 -0000       1.8
+++ image-dired.el      20 Oct 2007 06:30:12 -0000      1.9
@@ -1137,7 +1137,7 @@
 (defun image-dired-next-line ()
   "Move to next line and display properties."
   (interactive)
-  (next-line 1)
+  (forward-line 1)
   ;; If we end up in an empty spot, back up to the next thumbnail.
   (if (not (image-dired-image-at-point-p))
       (image-dired-backward-image))
@@ -1149,7 +1149,7 @@
 (defun image-dired-previous-line ()
   "Move to previous line and display properties."
   (interactive)
-  (previous-line 1)
+  (forward-line -1)
   ;; If we end up in an empty spot, back up to the next
   ;; thumbnail. This should only happen if the user deleted a
   ;; thumbnail and did not refresh, so it is not very common. But we




reply via email to

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