aboutsummaryrefslogtreecommitdiff
path: root/src/interp/cattable.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/cattable.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/cattable.boot')
-rw-r--r--src/interp/cattable.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/cattable.boot b/src/interp/cattable.boot
index 17b3c60c..5f546ebe 100644
--- a/src/interp/cattable.boot
+++ b/src/interp/cattable.boot
@@ -272,7 +272,7 @@ getCategoryExtensionAlist cform ==
formalSubstitute(form:=[.,:argl],u) ==
isFormalArgumentList argl => u
- EQSUBSTLIST(argl,$FormalMapVariableList,u)
+ applySubst(pairList($FormalMapVariableList,argl),u)
isFormalArgumentList argl ==
and/[x=fa for x in argl for fa in $FormalMapVariableList]