From: Chris Hanson Date: Fri, 1 May 1998 04:32:56 +0000 (+0000) Subject: Change the test used to determine if SCHEME-ENVIRONMENT is being set X-Git-Tag: 20090517-FFI~4800 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=4f088f585d6f28e78ca68010df95eb55c9575374;p=mit-scheme.git Change the test used to determine if SCHEME-ENVIRONMENT is being set to a package name. --- diff --git a/v7/src/edwin/evlcom.scm b/v7/src/edwin/evlcom.scm index ff8382634..09fefe908 100644 --- a/v7/src/edwin/evlcom.scm +++ b/v7/src/edwin/evlcom.scm @@ -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)