From: Chris Hanson Date: Wed, 24 May 2000 21:43:21 +0000 (+0000) Subject: Fix typo that caused MOVE-RELATIVE to ignore its operation when moving X-Git-Tag: 20090517-FFI~3686 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=c6b202415ee69bea44694e7dfc226b6ab71a005b;p=mit-scheme.git Fix typo that caused MOVE-RELATIVE to ignore its operation when moving backwards. --- diff --git a/v7/src/imail/imail-top.scm b/v7/src/imail/imail-top.scm index 5d1807da9..3019845e1 100644 --- a/v7/src/imail/imail-top.scm +++ b/v7/src/imail/imail-top.scm @@ -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)))