aboutsummaryrefslogtreecommitdiff
path: root/src/interp/br-op2.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/br-op2.boot
parentfeb9d8d42ee30dbdad5184b654e3de461c06e7e7 (diff)
downloadopen-axiom-1ea145d58ec94029d4f6e30a6f854f728154ad8c.tar.gz
More cleanup
Diffstat (limited to 'src/interp/br-op2.boot')
-rw-r--r--src/interp/br-op2.boot8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/br-op2.boot b/src/interp/br-op2.boot
index 925e1109..7ace60c7 100644
--- a/src/interp/br-op2.boot
+++ b/src/interp/br-op2.boot
@@ -261,7 +261,7 @@ whoUsesOperation(htPage,which,key) == --see dbPresentOps
for [op,:alist] in opAlist repeat
for [sig,:.] in alist repeat
opl := [[op,:SUBLISLIS($FormalMapVariableList,rest conform,sig)],:opl]
- opl := NREVERSE opl
+ opl := nreverse opl
u := whoUses(opl,conform)
prefix := pluralSay(#u,'"constructor uses",'"constructors use")
suffix :=
@@ -378,7 +378,7 @@ koOps(conform,domname,:options) == main where
-- for x in relatives repeat
-- or/[y for y in CDAR x | isSharpVar y] => 'skip
-- acc := [x,:acc]
--- relatives := NREVERSE acc
+-- relatives := nreverse acc
-- for (pair := [pakform,:.]) in relatives repeat
-- $packageItem := sublisFormal(rest conform,pair)
-- ours := merge(fn(pakform,nil),ours)
@@ -431,7 +431,7 @@ kFormatSlotDomain x == fn formatSlotDomain x where fn x ==
koCatOps(conform,domname) ==
conname := opOf conform
- oplist := REVERSE getConstructorOperationsFromDB conname
+ oplist := reverse getConstructorOperationsFromDB conname
oplist := sublisFormal(IFCDR domname or IFCDR conform ,oplist)
--check below for INTEGERP key to avoid subsumed signatures
[[zeroOneConvert op,:nalist] for [op,:alist] in oplist | nalist := koCatOps1(alist)]
@@ -525,7 +525,7 @@ koaPageFilterByCategory1(htPage,i) ==
newOpAlist := insertAlist(op,newEntry,newOpAlist)
falist := nil
for [op,:alist] in newOpAlist repeat
- falist := [[op,:NREVERSE alist],:falist]
+ falist := [[op,:nreverse alist],:falist]
htpSetProperty(htPage,'fromcat,['" from category {\sf ",form2HtString ancestor,'"}"])
dbShowOperationsFromConform(htPage,which,falist)