aboutsummaryrefslogtreecommitdiff
path: root/src/interp/format.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/format.boot
parent63a250a0a3b189e6e315008936aa9e53984b5ba5 (diff)
downloadopen-axiom-53356dde96d8bc9e264dbd291df8b9b3a75aa5d1.tar.gz
misc cleanup
Diffstat (limited to 'src/interp/format.boot')
-rw-r--r--src/interp/format.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/format.boot b/src/interp/format.boot
index 9f225f0c..fd82de57 100644
--- a/src/interp/format.boot
+++ b/src/interp/format.boot
@@ -288,7 +288,7 @@ dollarPercentTran x ==
x is [y,:z] =>
y1 := dollarPercentTran y
z1 := dollarPercentTran z
- EQ(y, y1) and EQ(z, z1) => x
+ sameObject?(y, y1) and sameObject?(z, z1) => x
[y1, :z1]
x is "$" or x is '"$" => "%%"
x is "T$" or x is '"T$" => "T"
@@ -476,7 +476,7 @@ formDecl2String(left,right) ==
whereBefore := $whereList
ls:= form2StringLocal left
rs:= form2StringLocal right
- NE($whereList,whereBefore) and $permitWhere => ls
+ not sameObject?($whereList,whereBefore) and $permitWhere => ls
concat(ls,'": ",rs)
formJoin1(op,u) ==