aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-map.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/i-map.boot')
-rw-r--r--src/interp/i-map.boot3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interp/i-map.boot b/src/interp/i-map.boot
index 45049109..5a25e8e3 100644
--- a/src/interp/i-map.boot
+++ b/src/interp/i-map.boot
@@ -383,8 +383,7 @@ clearDep1(x,toDoList,doneList,depList) ==
clearCache x
newDone:= [x,:doneList]
until null a repeat
- a:= ASSQ(x,depList)
- a =>
+ a := objectAssoc(x,depList) =>
depList := remove(depList,a)
toDoList := setUnion(toDoList,
setDifference(rest a,doneList))