aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-util.boot
diff options
context:
space:
mode:
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 88a4b6cf..1880e41e 100644
--- a/src/interp/g-util.boot
+++ b/src/interp/g-util.boot
@@ -601,13 +601,13 @@ listSort(pred,list,:optional) ==
mergeSort(pred,key,list,# list)
-- non-destructive merge sort using NOT GGREATERP as predicate
-MSORT list == listSort(function GLESSEQP, COPY_-LIST list)
+MSORT list == listSort(function GLESSEQP, copyList list)
-- destructive merge sort using NOT GGREATERP as predicate
NMSORT list == listSort(function GLESSEQP, list)
-- non-destructive merge sort using ?ORDER as predicate
-orderList l == listSort(function _?ORDER, COPY_-LIST l)
+orderList l == listSort(function _?ORDER, copyList l)
-- dummy defn until clean-up
-- order l == orderList l