aboutsummaryrefslogtreecommitdiff
path: root/src/interp/msg.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-02 01:02:57 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-02 01:02:57 +0000
commit1906e73ab030ad23f1f6269acfed69703c8c40d6 (patch)
treeb00af81c96b09e67a5634aa0e21d3b9a9ea6419d /src/interp/msg.boot
parent786cd98c9ab4543bb9d4a901a3d71497dd858aa5 (diff)
downloadopen-axiom-1906e73ab030ad23f1f6269acfed69703c8c40d6.tar.gz
more cleanup
Diffstat (limited to 'src/interp/msg.boot')
-rw-r--r--src/interp/msg.boot6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/interp/msg.boot b/src/interp/msg.boot
index 4e4c8542..fcffa99e 100644
--- a/src/interp/msg.boot
+++ b/src/interp/msg.boot
@@ -59,9 +59,6 @@ $ncMsgList := []
--%
-ListMember?(ob, l) ==
- MEMBER(ob, l, KEYWORD::TEST, function EQUAL)
-
--% Messages for the USERS of the compiler.
-- The program being compiled has a minor error.
-- Give a message and continue processing.
@@ -493,7 +490,8 @@ setMsgCatlessAttr(msg,attr) ==
whichCat attr ==
found := 'catless
for cat in $attrCats repeat
- if ListMember? (attr,eval cat) then
+ -- ??? a cat is a vector.
+ if listMember?(attr,eval cat) then
found := cat
return found
found