aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-utility.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-04-15 21:56:20 +0000
committerdos-reis <gdr@axiomatics.org>2011-04-15 21:56:20 +0000
commit53356dde96d8bc9e264dbd291df8b9b3a75aa5d1 (patch)
tree2ff719aaa40e8978033107dbad034189c2c296ba /src/interp/sys-utility.boot
parent63a250a0a3b189e6e315008936aa9e53984b5ba5 (diff)
downloadopen-axiom-53356dde96d8bc9e264dbd291df8b9b3a75aa5d1.tar.gz
misc cleanup
Diffstat (limited to 'src/interp/sys-utility.boot')
-rw-r--r--src/interp/sys-utility.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/sys-utility.boot b/src/interp/sys-utility.boot
index db742d49..d6b0d6ed 100644
--- a/src/interp/sys-utility.boot
+++ b/src/interp/sys-utility.boot
@@ -289,9 +289,9 @@ minimalise x ==
y => y
cons? x =>
z := min(first x,ht)
- if not EQ(z,first x) then x.first := z
+ if not sameObject?(z,first x) then x.first := z
z := min(rest x,ht)
- if not EQ(z,rest x) then x.rest := z
+ if not sameObject?(z,rest x) then x.rest := z
hashCheck(x,ht)
vector? x =>
for i in 0..MAXINDEX x repeat