aboutsummaryrefslogtreecommitdiff
path: root/src/interp/format.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-04-22 00:58:05 +0000
committerdos-reis <gdr@axiomatics.org>2011-04-22 00:58:05 +0000
commitb0046ba3929c513a399fd1ebb84dee1712c55a02 (patch)
tree97e562abe62305f257a27c97a59aeaed5fdd93ba /src/interp/format.boot
parentf5a47d23d57cb91b89254c7a5904baee0f004e2b (diff)
downloadopen-axiom-b0046ba3929c513a399fd1ebb84dee1712c55a02.tar.gz
* boot/utility.boot (copyList): Define.
(append!): Likewise. * boot/tokens.boot: Do not translate nconc.
Diffstat (limited to 'src/interp/format.boot')
-rw-r--r--src/interp/format.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/format.boot b/src/interp/format.boot
index 0be7cf3d..ff57521d 100644
--- a/src/interp/format.boot
+++ b/src/interp/format.boot
@@ -268,7 +268,7 @@ formatAttribute x ==
atom x => [" ",x]
x is [op,:argl] =>
for x in argl repeat
- argPart:= NCONC(argPart,concat('",",formatAttributeArg x))
+ argPart:= append!(argPart,concat('",",formatAttributeArg x))
argPart => concat('" ",op,'"(",rest argPart,'")")
[" ",op]
@@ -763,7 +763,7 @@ pkey keyStuff ==
keyStuff := IFCDR keyStuff
next := IFCAR keyStuff
oneMsg := returnStLFromKey(key,argL,dbN)
- allMsgs := ['" ", :NCONC (oneMsg,allMsgs)]
+ allMsgs := ['" ", :append! (oneMsg,allMsgs)]
allMsgs
string2Float s ==