aboutsummaryrefslogtreecommitdiff
path: root/src/interp/clam.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/clam.boot')
-rw-r--r--src/interp/clam.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/clam.boot b/src/interp/clam.boot
index 52dd4081..4f7e6b25 100644
--- a/src/interp/clam.boot
+++ b/src/interp/clam.boot
@@ -143,7 +143,7 @@ compClam(op,argl,body,$clamList) ==
codeBody:= ['PROG,[g2,g3],
:callCountCode,
['RETURN,['%when,secondPredPair,thirdPredPair]]]
- mainFunction:= [op,['LAM,arg,codeBody]]
+ mainFunction:= [op,['LAMBDA,arg,codeBody]]
computeFunction:= [auxfn,['LAMBDA,argl,:body]]
-- compile generated function stub
@@ -242,7 +242,7 @@ compHash(op,argl,body,cacheNameOrNil,eqEtc,countFl) ==
thirdPredPair:= ['%otherwise,putCode]
codeBody:= mkSeq [:callCountCode,
mkBind([[g2,getCode]],['%when,secondPredPair,thirdPredPair])]
- mainFunction:= [op,['LAM,arg,codeBody]]
+ mainFunction:= [op,['LAMBDA,arg,codeBody]]
computeFunction:= [auxfn,['LAMBDA,argl,:body]]
-- compile generated function stub
@@ -298,7 +298,7 @@ compHashGlobal(op,argl,body,cacheName,eqEtc,countFl) ==
['%store,['tableValue,cacheName,putForm],computeValue]
thirdPredPair := ['%otherwise,putCode]
codeBody := ['%bind,[[g2,getCode]],['%when,secondPredPair,thirdPredPair]]
- mainFunction:= [op,['LAM,arg,codeBody]]
+ mainFunction:= [op,['LAMBDA,arg,codeBody]]
computeFunction:= [auxfn,['LAMBDA,argl,:body]]
compileInteractive mainFunction
compileInteractive computeFunction