aboutsummaryrefslogtreecommitdiff
path: root/src/interp/c-doc.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/c-doc.boot')
-rw-r--r--src/interp/c-doc.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/c-doc.boot b/src/interp/c-doc.boot
index 0aa8a5f9..32332448 100644
--- a/src/interp/c-doc.boot
+++ b/src/interp/c-doc.boot
@@ -127,7 +127,7 @@ collectAndDeleteAssoc x ==
while s and first s is [=x,:r] repeat
res := [:res,:r]
s := rest s
- RPLACD(y,s)
+ y.rest := s
res
finalizeDocumentation() ==
@@ -508,7 +508,7 @@ appendOver [head,:tail] ==
acc := LASTNODE head
for x in tail repeat
end := LASTNODE x
- RPLACD(acc,x)
+ acc.rest := x
acc := end
head