From: Guillermo J. Rozas Date: Fri, 21 Aug 1987 02:49:28 +0000 (+0000) Subject: Missing comma. X-Git-Tag: 20090517-FFI~13127 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=3bbb0ef1e63209a22755038f22e9a341cce4fb6e;p=mit-scheme.git Missing comma. --- diff --git a/v7/src/compiler/machines/vax/dsyn.scm b/v7/src/compiler/machines/vax/dsyn.scm index 8c8f32563..be624a30f 100644 --- a/v7/src/compiler/machines/vax/dsyn.scm +++ b/v7/src/compiler/machines/vax/dsyn.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/machines/vax/dsyn.scm,v 1.4 1987/08/21 02:21:17 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/machines/vax/dsyn.scm,v 1.5 1987/08/21 02:49:28 jinx Exp $ Copyright (c) 1987 Massachusetts Institute of Technology @@ -85,7 +85,7 @@ MIT in each case. |# (define (make-instruction-parser prefix operands) `(lambda () (append ',prefix - (process-operands operands)))) + ,(process-operands operands)))) ;; A let* is used below to force the order of evaluation.