Eliminate #!aux quoting problem.
authorChris Hanson <org/chris-hanson/cph>
Sat, 15 May 1999 19:01:15 +0000 (19:01 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 15 May 1999 19:01:15 +0000 (19:01 +0000)
v7/src/runtime/lambda.scm

index b568229a3d3a216f19d282fb3ff2673eba0af3fc..79133763474f2ec4a9e9b5173295a1da393b3def 100644 (file)
@@ -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)