projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bfae7e
)
Eliminate #!aux quoting problem.
author
Chris Hanson
<org/chris-hanson/cph>
Sat, 15 May 1999 19:01:15 +0000
(19:01 +0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Sat, 15 May 1999 19:01:15 +0000
(19:01 +0000)
v7/src/runtime/lambda.scm
patch
|
blob
|
history
diff --git
a/v7/src/runtime/lambda.scm
b/v7/src/runtime/lambda.scm
index b568229a3d3a216f19d282fb3ff2673eba0af3fc..79133763474f2ec4a9e9b5173295a1da393b3def 100644
(file)
--- a/
v7/src/runtime/lambda.scm
+++ b/
v7/src/runtime/lambda.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: lambda.scm,v 14.1
4 1999/01/02 06:11:34
cph Exp $
+$Id: lambda.scm,v 14.1
5 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)