From 525838a6093ca1003e029d588fbb937aaebd6a22 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 2 Nov 2001 17:09:51 +0000 Subject: [PATCH] Fix bug: ENVIRONMENT-BOUND? wasn't examining ancestors of compiled-code environment frames. --- v7/src/runtime/uenvir.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.25.1