aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-spec1.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-06-23 05:33:12 +0000
committerdos-reis <gdr@axiomatics.org>2009-06-23 05:33:12 +0000
commit956bc9cce88ce71cdb46e3ecb9d9e1c1753dc601 (patch)
tree291a8d233d93f76f624c92575cc190203647ba61 /src/interp/i-spec1.boot
parentdbeb8d5ae59cfa7da8997a09ad27e4efc04d0eaf (diff)
downloadopen-axiom-956bc9cce88ce71cdb46e3ecb9d9e1c1753dc601.tar.gz
* interp/bootlex.lisp (spad): Don't bind $noSubsumption.
* interp/i-spec1.boot (evalCOLLECT): Fix thinko.
Diffstat (limited to 'src/interp/i-spec1.boot')
-rw-r--r--src/interp/i-spec1.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/i-spec1.boot b/src/interp/i-spec1.boot
index f9b1fb60..a23aaffb 100644
--- a/src/interp/i-spec1.boot
+++ b/src/interp/i-spec1.boot
@@ -541,7 +541,7 @@ upLoopIterSTEP(index,lower,step,upperList) ==
evalCOLLECT(op,[:itrl,body],m) ==
iters := [evalLoopIter itr for itr in itrl]
bod := getArgValue(body,computedMode body)
- if bod isnt ['SPADCALL,:.] then bode := ['unwrap,bod]
+ if bod isnt ['SPADCALL,:.] then bod := ['unwrap,bod]
code := timedOptimization asTupleNewCode0(second m, ['COLLECT,:iters,bod])
if $genValue then code := wrap timedEVALFUN code
putValue(op,objNew(code,m))