Fix typo that caused MOVE-RELATIVE to ignore its operation when moving
authorChris Hanson <org/chris-hanson/cph>
Wed, 24 May 2000 21:43:21 +0000 (21:43 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 24 May 2000 21:43:21 +0000 (21:43 +0000)
backwards.

v7/src/imail/imail-top.scm

index 5d1807da93a69d8f0444a8cba615909ad1ebfbd7..3019845e1a8259f922cb2dd181d5aa83a173358a 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-top.scm,v 1.105 2000/05/24 19:44:23 cph Exp $
+;;; $Id: imail-top.scm,v 1.106 2000/05/24 21:43:21 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2000 Massachusetts Institute of Technology
 ;;;
@@ -616,7 +616,7 @@ With prefix argument N moves backward N messages with these flags."
              (lambda (n step direction)
                (let ((folder (selected-folder))
                      (msg (selected-message)))
-                 (if (and operation (> delta 0))
+                 (if (and operation (> n 0))
                      (operation msg))
                  (let loop ((n n) (msg msg) (winner #f))
                    (let ((next (step msg predicate)))