aboutsummaryrefslogtreecommitdiff
path: root/src/interp/slam.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-04-30 18:55:21 +0000
committerdos-reis <gdr@axiomatics.org>2011-04-30 18:55:21 +0000
commit42cf0984b569e49060252e536c0c7e7aee469873 (patch)
treec2cb31c68df04f75bfd9a490ae10b9c6cf795102 /src/interp/slam.boot
parent5770442f576aa0c1e389344a636f1e4edca1b136 (diff)
downloadopen-axiom-42cf0984b569e49060252e536c0c7e7aee469873.tar.gz
* More cleanup
Diffstat (limited to 'src/interp/slam.boot')
-rw-r--r--src/interp/slam.boot8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/slam.boot b/src/interp/slam.boot
index 90c733c4..0fe99878 100644
--- a/src/interp/slam.boot
+++ b/src/interp/slam.boot
@@ -51,7 +51,7 @@ isRecurrenceRelation(op,body,minivectorName) ==
-- gives k boundary values, one general term plus possibly an
-- "out of domain" condition
--pcl is [:.,[ ''T,:mess]] and not (CONTAINED('throwMessage,mess) or
- -- CONTAINED('throwKeyedMsg,mess)) => NIL
+ -- CONTAINED('throwKeyedMsg,mess)) => nil
pcl := [x for x in pcl | not (x is ['%otherwise,:mess] and
(CONTAINED('throwMessage,mess) or
CONTAINED('throwKeyedMsg,mess)))]
@@ -398,7 +398,7 @@ reallyClearLocalModemaps x ==
clearCache x ==
get(x,'localModemap,$e) or get(x,'mapBody,$e) =>
for [map,:sub] in $mapSubNameAlist repeat
- map=x => _/UNTRACE_,2(sub,NIL)
+ map=x => _/UNTRACE_,2(sub,nil)
$e := reallyClearLocalModemaps x
$e:= putHist(x,'mapBody,nil,$e)
$e:= putHist(x,'localVars,nil,$e)
@@ -407,14 +407,14 @@ clearCache x ==
clearLocalModemaps x ==
u := get(x,"localModemap",$e) =>
for sub in ASSOCRIGHT $mapSubNameAlist repeat
- _/UNTRACE_,2(sub,NIL)
+ _/UNTRACE_,2(sub,nil)
$e:= reallyClearLocalModemaps x
for mm in u repeat
[.,fn,:.] := mm
if def:= get(fn,'definition,$e) then
$e:= putHist(x,'value,objNew(def,$EmptyMode),$e)
if cacheVec:= get(fn,'cacheInfo,$e) then
- setDynamicBinding(cacheVec.cacheName,NIL)
+ setDynamicBinding(cacheVec.cacheName,nil)
-- now clear the property list of the identifier
$e := addIntSymTabBinding(x,nil,$e)
sayKeyedMsg("S2IX0007",[x])