aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-output.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-05-08 22:01:09 +0000
committerdos-reis <gdr@axiomatics.org>2010-05-08 22:01:09 +0000
commit2c869f999871438dfb1c3efb9eb9f6e398c35d36 (patch)
tree212c40a23c6157a12252b97bd9b0e155a1e336d5 /src/interp/i-output.boot
parent20462739ac81a89fa81ff9576969c7a8d8952ea3 (diff)
downloadopen-axiom-2c869f999871438dfb1c3efb9eb9f6e398c35d36.tar.gz
* interp/wi2.boot: Remove more RPLACA and RPLACD uses.
* interp/topics.boot: Likewise. * interp/slam.boot: Likewise. * interp/nruncomp.boot: Likewise. * interp/interop.boot: Likewise. * interp/i-toplev.boot: Likewise. * interp/i-spec1.boot: Likewise. * interp/i-resolv.boot: Likewise. * interp/i-output.boot: Likewise. * interp/htsetvar.boot: Likewise. * interp/g-util.boot: Likewise. * interp/g-cndata.boot: Likewise. * interp/functor.boot: Likewise. * interp/dq.boot: Likewise. * interp/define.boot: Likewise. * interp/database.boot: Likewise. * interp/cparse.boot: Likewise. * interp/clam.boot: Likewise. * interp/c-util.boot: Likewise. * interp/br-op1.boot: Likewise. * interp/br-data.boot: Likewise.
Diffstat (limited to 'src/interp/i-output.boot')
-rw-r--r--src/interp/i-output.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/i-output.boot b/src/interp/i-output.boot
index a42cd712..bdb5c654 100644
--- a/src/interp/i-output.boot
+++ b/src/interp/i-output.boot
@@ -1066,7 +1066,7 @@ putWidth u ==
1
argsWidth:=
l is [firstArg,:restArg] =>
- RPLACA(rest u,putWidth firstArg)
+ u.rest.first := putWidth firstArg
for y in tails restArg repeat
y.first := putWidth first y
widthFirstArg:=
@@ -2336,10 +2336,10 @@ bracketagglist(u, start, linelength, tchr, open, close) ==
nil or
s = -1 => (nextu := nil)
EQ(lastx, u) => ((nextu := rest u); u.rest := nil)
- true => ((nextu := lastx); RPLACD(PREDECESSOR(lastx, u), nil))
+ true => ((nextu := lastx); PREDECESSOR(lastx, u).rest := nil)
for x in tails u repeat
x.first := LIST('CONCAT, first x, tchr)
- if null nextu then RPLACA(CDDR LAST u, close)
+ if null nextu then LAST(u).rest.rest.first := close
x := ASSOCIATER('CONCAT, CONS(ichr, u))
charybdis(ASSOCIATER('CONCAT, u), start, linelength)
if $collectOutput then TERPRI $algebraOutputStream