From 2c869f999871438dfb1c3efb9eb9f6e398c35d36 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Sat, 8 May 2010 22:01:09 +0000 Subject: * 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. --- src/interp/i-output.boot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/interp/i-output.boot') 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 -- cgit v1.2.3