aboutsummaryrefslogtreecommitdiff
path: root/src/interp/ht-util.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/ht-util.boot')
-rw-r--r--src/interp/ht-util.boot8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/ht-util.boot b/src/interp/ht-util.boot
index 7d5e5588..14607077 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(nreverse mapStringize COPY_-LIST line, $htLineList)
+ $htLineList := NCONC(reverse! mapStringize COPY_-LIST line, $htLineList)
$htLineList := [basicStringize line, :$htLineList]
bcIssueHt line ==
@@ -377,7 +377,7 @@ computeDomainVariableAlist() ==
htpDomainPvarSubstList $curPage]
pvarCondList pvar ==
- nreverse pvarCondList1([pvar], nil, htpDomainConditions $curPage)
+ reverse! pvarCondList1([pvar], nil, htpDomainConditions $curPage)
pvarCondList1(pvarList, activeConds, condList) ==
null condList => activeConds
@@ -543,7 +543,7 @@ makeSpadCommand(:l) ==
argList := nil
for arg in l while arg ~= lastArg repeat
argList := [strconc(arg, '", "), :argList]
- argList := nreverse [lastArg, :argList]
+ argList := reverse! [lastArg, :argList]
strconc(opForm, apply(function strconc, argList), '")")
htMakeInputList stringList ==
@@ -552,7 +552,7 @@ htMakeInputList stringList ==
argList := nil
for arg in stringList while arg ~= lastArg repeat
argList := [strconc(arg, '", "), :argList]
- argList := nreverse [lastArg, :argList]
+ argList := reverse! [lastArg, :argList]
bracketString apply(function strconc, argList)