aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-map.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-09-26 18:43:36 +0000
committerdos-reis <gdr@axiomatics.org>2009-09-26 18:43:36 +0000
commit1ea145d58ec94029d4f6e30a6f854f728154ad8c (patch)
tree676f0e73479516d288c33dcc3156029b71554d75 /src/interp/i-map.boot
parentfeb9d8d42ee30dbdad5184b654e3de461c06e7e7 (diff)
downloadopen-axiom-1ea145d58ec94029d4f6e30a6f854f728154ad8c.tar.gz
More cleanup
Diffstat (limited to 'src/interp/i-map.boot')
-rw-r--r--src/interp/i-map.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/i-map.boot b/src/interp/i-map.boot
index c9eec1fe..391aea3b 100644
--- a/src/interp/i-map.boot
+++ b/src/interp/i-map.boot
@@ -171,7 +171,7 @@ addMap(lhs,rhs,pred) ==
if x is ["SUCHTHAT",s,p] then (predList:= [p,:predList]; x:= s)
x
mkMapAlias(op,argl)
- argPredList:= NREVERSE predList
+ argPredList:= nreverse predList
finalPred :=
-- handle g(a,T)==a+T confusion between pred=T and T variable
MKPF((pred and (pred ~= 'T) => [:argPredList,SUBLISNQ($sl,pred)]; argPredList),"and")
@@ -272,7 +272,7 @@ mkMapAlias(op,argl) ==
$e:= putHist(op,"alias",newAlias,$e)
mkAliasList l == fn(l,nil) where fn(l,acc) ==
- null l => NREVERSE acc
+ null l => nreverse acc
not IDENTP first l or first l in acc => fn(rest l,[nil,:acc])
fn(rest l,[first l,:acc])