aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-util.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/g-util.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/g-util.boot')
-rw-r--r--src/interp/g-util.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/g-util.boot b/src/interp/g-util.boot
index 52edaf40..bc6bf2f1 100644
--- a/src/interp/g-util.boot
+++ b/src/interp/g-util.boot
@@ -272,7 +272,7 @@ putIntSymTab(x,prop,val,e) ==
u := ASSQ(prop,pl) =>
u.rest := val
pl
- lp := LASTPAIR pl
+ lp := lastNode pl
u := [[prop,:val]]
lp.rest := u
pl
@@ -397,7 +397,7 @@ PUTALIST(alist,prop,val) ==
-- else we fall over Lucid's read-only storage feature again
pair.rest := val
alist
- LASTPAIR(alist).rest := [[prop,:val]]
+ lastNode(alist).rest := [[prop,:val]]
alist
REMALIST(alist,prop) ==