aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-map.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-19 02:28:08 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-19 02:28:08 +0000
commit2f97f0a378ac0663d14f1e4e5a8df6c3d824fdd6 (patch)
tree756dc891b84576b3697a1d636e908328afb7719b /src/interp/i-map.boot
parentaf7a143e3a13e932e243165814fa40424507dae0 (diff)
downloadopen-axiom-2f97f0a378ac0663d14f1e4e5a8df6c3d824fdd6.tar.gz
more cleanup
Diffstat (limited to 'src/interp/i-map.boot')
-rw-r--r--src/interp/i-map.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/i-map.boot b/src/interp/i-map.boot
index 03527f2c..6a5f905f 100644
--- a/src/interp/i-map.boot
+++ b/src/interp/i-map.boot
@@ -707,7 +707,7 @@ compileDeclaredMap(op,sig,mapDef) ==
putMapCode(op,code,sig,name,parms,isRecursive) ==
-- saves the generated code and some other information about the
-- function
- codeInfo := VECTOR(op,code,sig,name,parms,isRecursive)
+ codeInfo := vector [op,code,sig,name,parms,isRecursive]
allCode := [codeInfo,:get(op,'generatedCode,$e)]
$e := putHist(op,'generatedCode,allCode,$e)
op
@@ -774,7 +774,7 @@ compileCoerceMap(op,argTypes,mm) ==
body := ['SPADCALL,:argCode,['LIST,['function,imp]]]
minivectorName := makeInternalMapMinivectorName name
body := substitute(["%dynval",MKQ minivectorName],"$$$",body)
- setDynamicBinding(minivectorName,LIST2VEC $minivector)
+ symbolValue(minivectorName) := LIST2VEC $minivector
compileInteractive [name,['LAMBDA,parms,body]]
sig.target