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.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/g-util.boot b/src/interp/g-util.boot
index b408d077..d9145d47 100644
--- a/src/interp/g-util.boot
+++ b/src/interp/g-util.boot
@@ -1069,7 +1069,7 @@ mergeSort(f,g,p,n) ==
t.rest := NIL
if QSLESSP(n,3) then return p
-- split the list p into p and q of equal length
- l := QSQUOTIENT(n,2)
+ l := n quo 2
t := p
for i in 1..l-1 repeat t := rest t
q := rest t