aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-util.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/g-util.boot
parent786cd98c9ab4543bb9d4a901a3d71497dd858aa5 (diff)
downloadopen-axiom-1906e73ab030ad23f1f6269acfed69703c8c40d6.tar.gz
more cleanup
Diffstat (limited to 'src/interp/g-util.boot')
-rw-r--r--src/interp/g-util.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/g-util.boot b/src/interp/g-util.boot
index 11960741..e1ff661a 100644
--- a/src/interp/g-util.boot
+++ b/src/interp/g-util.boot
@@ -57,8 +57,8 @@ usedSymbol?(s,x) ==
symbol? x => s = x
atom x => false
x is ['QUOTE,:.] => false
- x is [op,parms,:body] and op in $AbstractionOperator =>
- s in parms => false
+ x is [op,parms,:body] and abstractionOperator? op =>
+ symbolMember?(s,parms) => false
usedSymbol?(s,body)
or/[usedSymbol?(s,x') for x' in x]