aboutsummaryrefslogtreecommitdiff
path: root/src/interp/compiler.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-01 04:17:50 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-01 04:17:50 +0000
commitdd6933dbbfb9d8247876e818c7053218944e70a3 (patch)
tree5feee0cf900fd7ce4701b11fbeb1b9e169045fd9 /src/interp/compiler.boot
parent590b110c303021694c0ed17008d1a3f526f04451 (diff)
downloadopen-axiom-dd6933dbbfb9d8247876e818c7053218944e70a3.tar.gz
* interp/buildom.boot: Replace use of EQSUBSTLIST with applySubst.
* interp/c-util.boot: Likewise. * interp/cattable.boot: Likewise. * interp/compiler.boot: Likewise. * interp/define.boot: Likewise. * interp/format.boot: Likewise. * interp/functor.boot: Likewise. * interp/hashcode.boot: Likewise. * interp/i-output.boot: Likewise. * interp/i-syscmd.boot: Likewise. * interp/lisplib.boot: Likewise. * interp/modemap.boot: Likewise. * interp/rulesets.boot: Likewise. * interp/slam.boot: Likewise. * interp/sys-macros.lisp (APPLYR, TAILFN, TAIL, rplac): Remove as unused.
Diffstat (limited to 'src/interp/compiler.boot')
-rw-r--r--src/interp/compiler.boot5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interp/compiler.boot b/src/interp/compiler.boot
index afe8a03d..6df3e914 100644
--- a/src/interp/compiler.boot
+++ b/src/interp/compiler.boot
@@ -201,7 +201,8 @@ comp3(x,m,$e) ==
compTypeOf(x:=[op,:argl],m,e) ==
$insideCompTypeOf: local := true
- newModemap:= EQSUBSTLIST(argl,$FormalMapVariableList,get(op,'modemap,e))
+ newModemap :=
+ applySubst(pairList(argl,$FormalMapVariableList),get(op,'modemap,e))
e:= put(op,'modemap,newModemap,e)
comp3(x,m,e)
@@ -1549,7 +1550,7 @@ compColon([":",f,t],m,e) ==
e:=
f is [op,:argl] =>
--for MPOLY--replace parameters by formal arguments: RDJ 3/83
- newTarget:= EQSUBSTLIST(take(#argl,$FormalMapVariableList),
+ newTarget := EQSUBSTLIST(take(#argl,$FormalMapVariableList),
[(x is [":",a,m] => a; x) for x in argl],t)
signature:=
["Mapping",newTarget,: