From f86ecd10c5a826386c37635ea657e757f27497b4 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sat, 15 May 1999 19:01:15 +0000 Subject: [PATCH] Eliminate #!aux quoting problem. --- v7/src/runtime/lambda.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/lambda.scm b/v7/src/runtime/lambda.scm index b568229a3..791337634 100644 --- a/v7/src/runtime/lambda.scm +++ b/v7/src/runtime/lambda.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: lambda.scm,v 14.14 1999/01/02 06:11:34 cph Exp $ +$Id: lambda.scm,v 14.15 1999/05/15 19:01:15 cph Exp $ Copyright (c) 1988-1999 Massachusetts Institute of Technology @@ -383,7 +383,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (if (pair? optional) '(#!optional) '()) optional (if rest `(#!rest ,rest) '()) - (if (pair? auxiliary) `(#!aux) '()) + (if (pair? auxiliary) (list #!aux) '()) auxiliary)))))))) (let ((body* (if (null? declarations) -- 2.25.1