aboutsummaryrefslogtreecommitdiff
path: root/src/interp/ht-util.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/ht-util.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/ht-util.boot')
-rw-r--r--src/interp/ht-util.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/ht-util.boot b/src/interp/ht-util.boot
index 14607077..0c97430f 100644
--- a/src/interp/ht-util.boot
+++ b/src/interp/ht-util.boot
@@ -211,7 +211,7 @@ iht line ==
-- issue a single hyperteTeX line, or a group of lines
$newPage => nil
cons? line =>
- $htLineList := NCONC(reverse! mapStringize COPY_-LIST line, $htLineList)
+ $htLineList := append!(reverse! mapStringize copyList line, $htLineList)
$htLineList := [basicStringize line, :$htLineList]
bcIssueHt line ==
@@ -383,7 +383,7 @@ pvarCondList1(pvarList, activeConds, condList) ==
null condList => activeConds
[cond, : restConds] := condList
cond is [., pv, pattern] and pv in pvarList =>
- pvarCondList1(nconc(pvarList, pvarsOfPattern pattern),
+ pvarCondList1(append!(pvarList, pvarsOfPattern pattern),
[cond, :activeConds], restConds)
pvarCondList1(pvarList, activeConds, restConds)