aboutsummaryrefslogtreecommitdiff
path: root/src/interp/mark.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-02-22 20:06:03 +0000
committerdos-reis <gdr@axiomatics.org>2011-02-22 20:06:03 +0000
commita886a6f8ac9b0bfd65611631875a119693f6c84a (patch)
treef831563f180ae375afafcba9e355afd29ba57eda /src/interp/mark.boot
parent063103a398ab7b1fdef378a2128fa1c9da2f070e (diff)
downloadopen-axiom-a886a6f8ac9b0bfd65611631875a119693f6c84a.tar.gz
* boot/tokens.boot: mmSource is a new selector for modemap datatype.
* interp/wi1.boot: Likewise. * interp/br-data.boot: Various cleanups. * interp/c-util.boot: Likewise. * interp/compiler.boot: Likewise. * interp/functor.boot: Likewise. * interp/g-util.boot: Likewise. * interp/guess.boot: Likewise. * interp/i-util.boot: Likewise. * interp/mark.boot: Likewise. * interp/msgdb.boot: Likewise. * interp/topics.boot: Likewise.
Diffstat (limited to 'src/interp/mark.boot')
-rw-r--r--src/interp/mark.boot8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/mark.boot b/src/interp/mark.boot
index 868cf7f5..509fd8ba 100644
--- a/src/interp/mark.boot
+++ b/src/interp/mark.boot
@@ -594,7 +594,7 @@ markRecord(source,target,u) ==
-- Capsule Function: Find dewey decimal path across a list
--======================================================================
markPath u == --u has nested structure: u0 < u1 < u2 ...
- whole := LAST u
+ whole := last u
part := first u
$path := u
u is [.] => 0 --means THE WHOLE THING
@@ -930,11 +930,11 @@ markPrintAttributes addForm ==
capsule :=
addForm is ['add,a,:.] =>
a is ['CATEGORY,:.] => a
- a is ['Join,:.] => first LASTNODE a
- first LASTNODE addForm
+ a is ['Join,:.] => first lastNode a
+ first lastNode addForm
addForm
if capsule is ['CAPSULE,:r] then
- capsule := first LASTNODE r
+ capsule := first lastNode r
capsule isnt ['CATEGORY,.,:lst] => nil
for x in lst | x is ['ATTRIBUTE,att] repeat
markSay(form2String att)