From c6b202415ee69bea44694e7dfc226b6ab71a005b Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 24 May 2000 21:43:21 +0000 Subject: [PATCH] Fix typo that caused MOVE-RELATIVE to ignore its operation when moving backwards. --- v7/src/imail/imail-top.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))) -- 2.25.1