From: Chris Hanson Date: Fri, 2 Nov 2001 17:09:51 +0000 (+0000) Subject: Fix bug: ENVIRONMENT-BOUND? wasn't examining ancestors of X-Git-Tag: 20090517-FFI~2471 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=525838a6093ca1003e029d588fbb937aaebd6a22;p=mit-scheme.git Fix bug: ENVIRONMENT-BOUND? wasn't examining ancestors of compiled-code environment frames. --- diff --git a/v7/src/runtime/uenvir.scm b/v7/src/runtime/uenvir.scm index b0496b25a..8f7a52748 100644 --- a/v7/src/runtime/uenvir.scm +++ b/v7/src/runtime/uenvir.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: uenvir.scm,v 14.42 2001/11/02 17:08:02 cph Exp $ +$Id: uenvir.scm,v 14.43 2001/11/02 17:09:51 cph Exp $ Copyright (c) 1988-1999, 2001 Massachusetts Institute of Technology @@ -113,7 +113,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA (cond ((interpreter-environment? environment) (interpreter-environment/bound? environment name)) ((stack-ccenv? environment) - (stack-ccenv/bound? environment name) + (stack-ccenv/bound? environment name)) ((closure-ccenv? environment) (closure-ccenv/bound? environment name)) (else