Fix shadowing problem.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 29 Jun 1993 08:41:48 +0000 (08:41 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 29 Jun 1993 08:41:48 +0000 (08:41 +0000)
v7/src/compiler/base/scode.scm
v7/src/compiler/fgopt/simapp.scm

index 817549174f6df81810c79458b9942cb1f7a442e2..545e940f89a4240a1abf7d69595f97f157846d08 100644 (file)
@@ -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?
index 6a1bf137064566550c805a33abc11700335c811c..456753f22aa219f8b01c9d3b8a1ecc945dd58f26 100644 (file)
@@ -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))