aboutsummaryrefslogtreecommitdiff
path: root/src/interp/lisplib.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-02 01:02:57 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-02 01:02:57 +0000
commit1906e73ab030ad23f1f6269acfed69703c8c40d6 (patch)
treeb00af81c96b09e67a5634aa0e21d3b9a9ea6419d /src/interp/lisplib.boot
parent786cd98c9ab4543bb9d4a901a3d71497dd858aa5 (diff)
downloadopen-axiom-1906e73ab030ad23f1f6269acfed69703c8c40d6.tar.gz
more cleanup
Diffstat (limited to 'src/interp/lisplib.boot')
-rw-r--r--src/interp/lisplib.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/lisplib.boot b/src/interp/lisplib.boot
index afc696d6..476d7548 100644
--- a/src/interp/lisplib.boot
+++ b/src/interp/lisplib.boot
@@ -279,7 +279,7 @@ killNestedInstantiations(deps) ==
isNestedInstantiation(form,deps) ==
form is [op,:argl] =>
- op in deps => true
+ symbolMember?(op,deps) => true
or/[isNestedInstantiation(x,deps) for x in argl]
false
@@ -404,7 +404,7 @@ loadFunctor u ==
makeConstructorsAutoLoad() ==
for cnam in allConstructors() repeat
- cnam in $CategoryNames => nil
+ symbolMember?(cnam,$CategoryNames) => nil
property(cnam,'LOADED) := nil
-- fn:=getConstructorAbbreviationFromDB cnam
if niladicConstructorFromDB cnam
@@ -427,7 +427,7 @@ systemDependentMkAutoload(fn,cnam) ==
autoLoad(abb,cname) ==
-- builtin constructors are always loaded. By definition, there
-- is no way to unload them and load them again.
- cname in $BuiltinConstructorNames => cname
+ builtinConstructor? cname => cname
if not property(cname,'LOADED) then loadLib cname
symbolFunction cname