FIxed #F/() bug
authorStephen Adams <edu/mit/csail/zurich/adams>
Mon, 21 Mar 1994 20:16:35 +0000 (20:16 +0000)
committerStephen Adams <edu/mit/csail/zurich/adams>
Mon, 21 Mar 1994 20:16:35 +0000 (20:16 +0000)
v7/src/runtime/lambdx.scm

index 2b18822b9af78e24d9b54e6d2f20e5700a8aab5b..8b1aa2e38b048a9df011b368665c487f8326ac69 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: lambdx.scm,v 14.6 1994/02/19 16:14:27 gjr Exp $
+$Id: lambdx.scm,v 14.7 1994/03/21 20:16:35 adams Exp $
 
 Copyright (c) 1988-1994 Massachusetts Institute of Technology
 
@@ -86,5 +86,5 @@ MIT in each case. |#
          (make-lambda* (lambda-pattern/name pattern)
                        required
                        optional
-                       (if (null? rest) rest (car rest))
+                       (if (null? rest) #F (car rest))
                        body))))))
\ No newline at end of file