aboutsummaryrefslogtreecommitdiff
path: root/src/interp/mark.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/mark.boot')
-rw-r--r--src/interp/mark.boot12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interp/mark.boot b/src/interp/mark.boot
index fd3bf0cd..7ef254ec 100644
--- a/src/interp/mark.boot
+++ b/src/interp/mark.boot
@@ -82,12 +82,12 @@ tcheck T ==
markComp(x,T) == --for comp
tcheck T
- x ^= CAR T => [mkWi('comp,'WI,x,CAR T),:CDR T]
+ x ~= CAR T => [mkWi('comp,'WI,x,CAR T),:CDR T]
T
markAny(key,x,T) ==
tcheck T
- x ^= CAR T => [mkWi(key,'WI,x,CAR T),:CDR T]
+ x ~= CAR T => [mkWi(key,'WI,x,CAR T),:CDR T]
T
markConstruct(x,T) ==
@@ -263,7 +263,7 @@ markRepeat(form, T) ==
[mkWi("repeat", 'WI,form,CAR T), :CDR T]
markTran(form,form',[dc,:sig],env) == --from compElt/compFormWithModemap
- dc ^= 'Rep or ^MEMQ('_$,sig) => mkWi('markTran,'WI,form,['call,:form'])
+ dc ~= 'Rep or ^MEMQ('_$,sig) => mkWi('markTran,'WI,form,['call,:form'])
argl := [u for t in rest sig for arg in rest form'] where u() ==
t='_$ =>
argSource := getSourceWI arg
@@ -287,7 +287,7 @@ markImport(d,:option) == --from compFormWithModemap/genDeltaEntry/compImport
STRINGP d or (IDENTP d and (PNAME d).0 = char '_#) => nil
MEMQ(d,'(_$ _$NoValueMode _$EmptyMode Void)) => nil
-------=======+> WHY DOESN'T THIS WORK????????????
---if (d' := macroExpand(d,$e)) ^= d then markImport(d',declared?)
+--if (d' := macroExpand(d,$e)) ~= d then markImport(d',declared?)
dom := markMacroTran d
--if IDENTP dom and dom = d and not getmode(dom,$e) then dom := ['MyENUM, d]
categoryForm? dom => nil
@@ -1336,7 +1336,7 @@ diff(x,y) ==
diff1(x,y) ==
x = y => nil
ATOM x or ATOM y => [[x,y]]
- #x ^= #y => [x,y]
+ #x ~= #y => [x,y]
"APPEND"/[diff1(u,v) for u in x for v in y]
markConstructorForm name == --------> same as getConstructorForm
@@ -1357,7 +1357,7 @@ markGetPaths(x,y) ==
-- res := reverseDown mkGetPaths(x, y)
res := mkGetPaths(x, y)
-- oldRes := markPaths(x,y,[nil])
--- if res ^= oldRes then $badStack := [[x, :y], :$badStack]
+-- if res ~= oldRes then $badStack := [[x, :y], :$badStack]
-- oldRes
markPaths(x,y,[nil])