diff options
Diffstat (limited to 'src/interp/br-op2.boot')
-rw-r--r-- | src/interp/br-op2.boot | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/br-op2.boot b/src/interp/br-op2.boot index 61e76d98..de06e99a 100644 --- a/src/interp/br-op2.boot +++ b/src/interp/br-op2.boot @@ -281,7 +281,7 @@ whoUsesOperation(htPage,which,key) == --see dbPresentOps htSay('"Users of {\em ",ops,'": ") bcConform ['Mapping,:sublisFormal(conargs,sig)] htSay('"}\newline") - bcConTable listSort(function GLESSEQP,REMDUP namelist) + bcConTable listSort(function GLESSEQP,removeDuplicates namelist) noOneUses := SETDIFFERENCE(opl,usedList) if #noOneUses > 0 then htSay('"No constructor uses the ") @@ -298,8 +298,8 @@ whoUsesOperation(htPage,which,key) == --see dbPresentOps htShowPageNoScroll() whoUses(opSigList,conform) == - opList := REMDUP ASSOCLEFT opSigList - numOfArgsList := REMDUP [-1 + #sig for [.,:sig] in opSigList] + opList := removeDuplicates ASSOCLEFT opSigList + numOfArgsList := removeDuplicates [-1 + #sig for [.,:sig] in opSigList] acc := nil $conname : local := first conform domList := getUsersOfConstructor $conname |