aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-util.boot
diff options
context:
space:
mode:
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) ==