From fd31b988a02c95874ba12111e46f829a1b8d938a Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 24 Aug 1992 17:39:23 +0000 Subject: [PATCH] CREF doesn't like ACCESS to non-global environment. Work around by using ENVIRONMENT-LOOKUP. --- v7/src/sf/butils.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/v7/src/sf/butils.scm b/v7/src/sf/butils.scm index bb32327ea..7786a0a00 100644 --- a/v7/src/sf/butils.scm +++ b/v7/src/sf/butils.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/butils.scm,v 4.6 1992/08/22 15:03:25 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/butils.scm,v 4.7 1992/08/24 17:39:23 cph Exp $ -Copyright (c) 1988-1992 Massachusetts Institute of Technology +Copyright (c) 1988-92 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -75,8 +75,8 @@ MIT in each case. |# (define compile-directory (directory-processor "bin" (lambda () - (if (access compiler:cross-compiling? - (->environment '(compiler))) + (if (environment-lookup (->environment '(compiler)) + 'compiler:cross-compiling?) "moc" "com")) (lambda (pathname output-directory) -- 2.25.1