aboutsummaryrefslogtreecommitdiff
path: root/src/interp/c-util.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/c-util.boot')
-rw-r--r--src/interp/c-util.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/c-util.boot b/src/interp/c-util.boot
index f6a0ede4..df690293 100644
--- a/src/interp/c-util.boot
+++ b/src/interp/c-util.boot
@@ -951,7 +951,7 @@ substituteOp(op',op,x) ==
[(op=(f:= first x) => op'; f),:[substituteOp(op',op,y) for y in rest x]]
--substituteForFormalArguments(argl,expr) ==
--- SUBLIS([[v,:a] for a in argl for v in $FormalMapVariableList],expr)
+-- applySubst([[v,:a] for a in argl for v in $FormalMapVariableList],expr)
-- following is only intended for substituting in domains slots 1 and 4
-- signatures and categories
@@ -1141,7 +1141,7 @@ registerFunctionReplacement(name,body) ==
eqSubstAndCopy: (%List %Form, %List %Symbol, %Form) -> %Form
eqSubstAndCopy(args,parms,body) ==
- SUBLIS(pairList(parms,args),body,KEYWORD::TEST,function EQ)
+ applySubst(pairList(parms,args),body)
eqSubst: (%List %Form, %List %Symbol, %Form) -> %Form
eqSubst(args,parms,body) ==