aboutsummaryrefslogtreecommitdiff
path: root/src/interp/record.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/record.boot')
-rw-r--r--src/interp/record.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/record.boot b/src/interp/record.boot
index 74591e14..b16dbabe 100644
--- a/src/interp/record.boot
+++ b/src/interp/record.boot
@@ -108,7 +108,7 @@ printRecordFile(pathname,:option) ==
for x in i repeat sayBrightly x
sayNewLine()
for x in o repeat maPrin x
- if t^= '(Void) then printTypeAndTime(nil,t)
+ if t ~= '(Void) then printTypeAndTime(nil,t)
testPrin(u,w) == --same as maPrin but lines are stored in $testOutputLineList
--these lines are needed for pasting into HT files
@@ -194,12 +194,12 @@ evaluateLines lines ==
wasIs(old,new,:typePart) ==
sayBrightly '"*************************************************************"
- if old ^= new then
+ if old ~= new then
sayBrightly '"Was ----------> "
for x in old repeat maPrin x
sayBrightly '"Is -----------> "
for x in new repeat maPrin x
- typePart is [oldtype,newtype] and oldtype ^= newtype =>
+ typePart is [oldtype,newtype] and oldtype ~= newtype =>
sayBrightlyNT ['" Type was ---> ",oldtype]
pp old
sayBrightlyNT ['" Type is ---> ",newtype]