From: Guillermo J. Rozas Date: Tue, 29 Jun 1993 08:41:48 +0000 (+0000) Subject: Fix shadowing problem. X-Git-Tag: 20090517-FFI~8261 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=352b50923543abd84ca86364d05c6992891a8c24;p=mit-scheme.git Fix shadowing problem. --- diff --git a/v7/src/compiler/base/scode.scm b/v7/src/compiler/base/scode.scm index 817549174..545e940f8 100644 --- a/v7/src/compiler/base/scode.scm +++ b/v7/src/compiler/base/scode.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: scode.scm,v 4.8 1992/12/30 16:32:12 gjr Exp $ +$Id: scode.scm,v 4.9 1993/06/29 08:41:48 gjr Exp $ -Copyright (c) 1988-1992 Massachusetts Institute of Technology +Copyright (c) 1988-1993 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -65,7 +65,7 @@ MIT in each case. |# in-package-environment in-package-expression make-lambda lambda? lambda-components make-open-block open-block? open-block-components - primitive-procedure? + primitive-procedure? procedure? make-quotation quotation? quotation-expression make-sequence sequence? sequence-actions sequence-components symbol? diff --git a/v7/src/compiler/fgopt/simapp.scm b/v7/src/compiler/fgopt/simapp.scm index 6a1bf1370..456753f22 100644 --- a/v7/src/compiler/fgopt/simapp.scm +++ b/v7/src/compiler/fgopt/simapp.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: simapp.scm,v 4.6 1993/06/29 04:35:29 gjr Exp $ +$Id: simapp.scm,v 4.7 1993/06/29 08:41:26 gjr Exp $ Copyright (c) 1988-1993 Massachusetts Institute of Technology @@ -114,7 +114,7 @@ MIT in each case. |# (if (not (cond ((eq? value compiled-error-procedure) (positive? argument-count)) - ((procedure? value) + ((scode/procedure? value) (procedure-arity-valid? value argument-count)) (else (if (not (unassigned-reference-trap? value))