Fix typo that prevented the body of an IN-PACKAGE special form from
authorChris Hanson <org/chris-hanson/cph>
Thu, 6 Jul 1995 22:07:23 +0000 (22:07 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 6 Jul 1995 22:07:23 +0000 (22:07 +0000)
being treated like a BEGIN WRT declarations.

v7/src/runtime/syntax.scm

index 4105b4e688ae25d62e64928b2a8ad93708196b43..d25857c4f5578e145d639514df8b83241bbd9bd5 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: syntax.scm,v 14.26 1995/04/13 22:24:05 cph Exp $
+$Id: syntax.scm,v 14.27 1995/07/06 22:07:23 cph Exp $
 
 Copyright (c) 1988-95 Massachusetts Institute of Technology
 
@@ -357,7 +357,7 @@ MIT in each case. |#
 (define (syntax/in-package top-level? environment . body)
   top-level?
   (make-in-package (syntax-subexpression environment)
-                  (make-sequence (syntax-sequence-internal #t body))))
+                  (make-scode-sequence (syntax-sequence-internal #t body))))
 
 (define (syntax/delay top-level? expression)
   top-level?