From: Chris Hanson Date: Wed, 15 May 1996 05:51:26 +0000 (+0000) Subject: Fix typo. X-Git-Tag: 20090517-FFI~5512 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6ebf378c3a27130d27c053c967d46da0ce4d5c6b;p=mit-scheme.git Fix typo. --- diff --git a/v7/src/edwin/snr.scm b/v7/src/edwin/snr.scm index e843f40b6..b7c0bdaa6 100644 --- a/v7/src/edwin/snr.scm +++ b/v7/src/edwin/snr.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: snr.scm,v 1.10 1996/05/15 04:40:17 cph Exp $ +;;; $Id: snr.scm,v 1.11 1996/05/15 05:51:26 cph Exp $ ;;; ;;; Copyright (c) 1995-96 Massachusetts Institute of Technology ;;; @@ -3197,7 +3197,7 @@ With prefix arg, replaces the file with the list information." (let loop ((item (first-item item)) (n n)) (let ((previous (previous-item buffer item))) (procedure buffer item previous n) - (if (< n 1) + (if (< n -1) (if previous (loop previous (+ n 1)) (editor-failure)))))))))