From: Chris Hanson Date: Mon, 19 Jun 2006 18:02:55 +0000 (+0000) Subject: Fixed references to unbound variable. X-Git-Tag: 20090517-FFI~1003 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=56f06aaa56b99a6fc2e4e55ae3c9f158c3a8d37c;p=mit-scheme.git Fixed references to unbound variable. --- diff --git a/v7/src/edwin/paredit.scm b/v7/src/edwin/paredit.scm index a0acf055e..ace207541 100644 --- a/v7/src/edwin/paredit.scm +++ b/v7/src/edwin/paredit.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: paredit.scm,v 1.1 2006/06/16 19:02:27 riastradh Exp $ +$Id: paredit.scm,v 1.2 2006/06/19 18:02:55 cph Exp $ This code is written by Taylor R. Campbell and placed in the Public Domain. All warranties are disclaimed. @@ -620,7 +620,7 @@ With a numerical prefix argument N, kill N S-expressions backward in (if (> argument 1) (save-excursion (lambda () - (let loop ((n n)) + (let loop ((n argument)) (lisp-indent-line #f) (modify-current-point! (lambda (point) @@ -629,7 +629,7 @@ With a numerical prefix argument N, kill N S-expressions backward in (let ((m (- n 1))) (if (positive? m) (loop m)))))))) - ((negative? n) + ((negative? argument) (save-excursion (lambda () (let loop ((n n))