From: Stephen Adams Date: Sat, 6 May 1995 18:28:45 +0000 (+0000) Subject: Fixed typo. X-Git-Tag: 20090517-FFI~6333 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=f36b4867424fa3c1f8eca632fba0479004314fc9;p=mit-scheme.git Fixed typo. --- diff --git a/v8/src/compiler/midend/utils.scm b/v8/src/compiler/midend/utils.scm index 7d606d9cb..d58e5df22 100644 --- a/v8/src/compiler/midend/utils.scm +++ b/v8/src/compiler/midend/utils.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: utils.scm,v 1.24 1995/05/06 18:04:53 adams Exp $ +$Id: utils.scm,v 1.25 1995/05/06 18:28:45 adams Exp $ Copyright (c) 1994-1995 Massachusetts Institute of Technology @@ -238,7 +238,7 @@ MIT in each case. |# (if incremental? (loop (cdr actions) (append (begin/exprs (car actions)) actions*)) - (loop (append (reverse (begin/expr (car actions))) + (loop (append (reverse (begin/exprs (car actions))) (cdr actions)) actions*))) ((and (not (null? actions*))