Change the test used to determine if SCHEME-ENVIRONMENT is being set
authorChris Hanson <org/chris-hanson/cph>
Fri, 1 May 1998 04:32:56 +0000 (04:32 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 1 May 1998 04:32:56 +0000 (04:32 +0000)
to a package name.

v7/src/edwin/evlcom.scm

index ff83826346c6d17d2e710b8e1025c43fd37c492b..09fefe908b79f59d55b2f556d85646ff9383e7f7 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Id: evlcom.scm,v 1.56 1998/04/30 22:15:43 cph Exp $
+;;;    $Id: evlcom.scm,v 1.57 1998/05/01 04:32:56 cph Exp $
 ;;;
 ;;;    Copyright (c) 1986, 1989-98 Massachusetts Institute of Technology
 ;;;
@@ -55,7 +55,7 @@ If 'DEFAULT, use the default (REP loop) environment."
   'DEFAULT
   #f
   (lambda (object)
-    (if (or (eq? 'DEFAULT object) (name->package object))
+    (if (or (eq? 'DEFAULT object) (list-of-type? object symbol?))
        object
        (call-with-current-continuation
         (lambda (k)