aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-utility.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-01 14:53:11 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-01 14:53:11 +0000
commitfd12ad84f465b3fab7d8e7bdc48febb940faa761 (patch)
treeec70f2a5dcb8f9197edbdc06442822a905455cc0 /src/interp/sys-utility.boot
parent8ca7f8357b22f6a24eeafeeddc6d18270d5fa9ad (diff)
downloadopen-axiom-fd12ad84f465b3fab7d8e7bdc48febb940faa761.tar.gz
more cleanups
Diffstat (limited to 'src/interp/sys-utility.boot')
-rw-r--r--src/interp/sys-utility.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/sys-utility.boot b/src/interp/sys-utility.boot
index b12c4734..88c6ac6a 100644
--- a/src/interp/sys-utility.boot
+++ b/src/interp/sys-utility.boot
@@ -135,14 +135,14 @@ CONTAINED(x,y) == main where
ASSOCLEFT: %Thing -> %Thing
ASSOCLEFT x ==
atom x => x
- MAPCAR(function first,x)
+ [first p for p in x]
++ Returns all the datums of association list `x'.
-- ??? Should not this be named `alistAllValues'?
ASSOCRIGHT: %Thing -> %Thing
ASSOCRIGHT x ==
atom x => x
- MAPCAR(function rest,x)
+ [rest p for p in x]
++ Put the association list pair `(x . y)' into `l', erasing any
++ previous association for `x'.