aboutsummaryrefslogtreecommitdiff
path: root/src/interp/trace.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/trace.boot')
-rw-r--r--src/interp/trace.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/trace.boot b/src/interp/trace.boot
index 2b874c2d..ead22c21 100644
--- a/src/interp/trace.boot
+++ b/src/interp/trace.boot
@@ -161,7 +161,7 @@ getTraceOptions options ==
[key,parms] := first $traceErrorStack
throwKeyedMsg(key,['"",:parms])
throwListOfKeyedMsgs("S2IT0017",[# $traceErrorStack],
- NREVERSE $traceErrorStack)
+ nreverse $traceErrorStack)
optionList
saveMapSig(funNames) ==
@@ -364,7 +364,7 @@ getMapSubNames(l) ==
subs:= nil
for mapName in l repeat
lmm:= get(mapName,'localModemap,$InteractiveFrame) =>
- subs:= APPEND([[mapName,:second mm] for mm in lmm],subs)
+ subs:= append([[mapName,:second mm] for mm in lmm],subs)
union(subs,getPreviousMapSubNames UNIONQ(_/TRACENAMES,
$lastUntraced))
@@ -397,7 +397,7 @@ augmentTraceNames(l,mapSubNames) ==
res:= nil
for traceName in l repeat
mml:= get(traceName,'localModemap,$InteractiveFrame) =>
- res:= APPEND([second mm for mm in mml],res)
+ res:= append([second mm for mm in mml],res)
res:= [traceName,:res]
res