From: Guillermo J. Rozas Date: Mon, 24 Aug 1987 20:37:11 +0000 (+0000) Subject: Missing argument in call to scode/combination-components. X-Git-Tag: 20090517-FFI~13112 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=b7eab40aba9f9ded3408d2ae639aa9d012461ad3;p=mit-scheme.git Missing argument in call to scode/combination-components. --- diff --git a/v7/src/compiler/base/pmerly.scm b/v7/src/compiler/base/pmerly.scm index 162d5894e..faa4b19e5 100644 --- a/v7/src/compiler/base/pmerly.scm +++ b/v7/src/compiler/base/pmerly.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/pmerly.scm,v 1.4 1987/08/24 19:45:33 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/pmerly.scm,v 1.5 1987/08/24 20:37:11 jinx Exp $ Copyright (c) 1987 Massachusetts Institute of Technology @@ -656,10 +656,9 @@ MIT in each case. |# values)) (define (scode/let-components lcomb receiver) - (scode/combination-components + (scode/combination-components lcomb (lambda (operator values) - (scode/lambda-components - operator + (scode/lambda-components operator (lambda (tag names opt rest aux decls body) (receiver names values decls body))))))