aboutsummaryrefslogtreecommitdiff
path: root/src/interp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp')
-rw-r--r--src/interp/define.boot8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/define.boot b/src/interp/define.boot
index 5da7a327..d68d3316 100644
--- a/src/interp/define.boot
+++ b/src/interp/define.boot
@@ -1642,8 +1642,8 @@ makeCategoryForm(c,e) ==
mustInstantiate: %Form -> %Thing
mustInstantiate D ==
- D is [fn,:.] and (not (fn in $DummyFunctorNames)
- or GET(fn,"makeFunctionList"))
+ D is [fn,:.] and
+ not (MEMQ(fn,$DummyFunctorNames) or GET(fn,"makeFunctionList"))
wrapDomainSub: (%List, %Form) -> %Form
wrapDomainSub(parameters,x) ==
@@ -1651,8 +1651,8 @@ wrapDomainSub(parameters,x) ==
mkExplicitCategoryFunction(domainOrPackage,sigList,atList) ==
body:=
- ["mkCategory",MKQ domainOrPackage,['LIST,:nreverse sigList],
- ['LIST,:nreverse atList],MKQ domList,nil] where
+ ["mkCategory",MKQ domainOrPackage,['LIST,:reverse sigList],
+ ['LIST,:reverse atList],MKQ domList,nil] where
domList() ==
("union"/[fn sig for ["QUOTE",[[.,sig,:.],:.]] in sigList]) where
fn sig == [D for D in sig | mustInstantiate D]