aboutsummaryrefslogtreecommitdiff
path: root/src/interp/pspad1.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-09-26 18:43:36 +0000
committerdos-reis <gdr@axiomatics.org>2009-09-26 18:43:36 +0000
commit1ea145d58ec94029d4f6e30a6f854f728154ad8c (patch)
tree676f0e73479516d288c33dcc3156029b71554d75 /src/interp/pspad1.boot
parentfeb9d8d42ee30dbdad5184b654e3de461c06e7e7 (diff)
downloadopen-axiom-1ea145d58ec94029d4f6e30a6f854f728154ad8c.tar.gz
More cleanup
Diffstat (limited to 'src/interp/pspad1.boot')
-rw-r--r--src/interp/pspad1.boot12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interp/pspad1.boot b/src/interp/pspad1.boot
index 380c6bae..1b251048 100644
--- a/src/interp/pspad1.boot
+++ b/src/interp/pspad1.boot
@@ -94,8 +94,8 @@ lisp2Boot x ==
$numberOfSpills:= 0
$lineLength:= 80
format x
- formatOutput REVERSE $lineFragmentBuffer
- [fragmentsToLine y for y in REVERSE $lineBuffer]
+ formatOutput reverse $lineFragmentBuffer
+ [fragmentsToLine y for y in reverse $lineBuffer]
fragmentsToLine fragments ==
string:= lispStringList2String fragments
@@ -112,7 +112,7 @@ lispStringList2String x ==
--% routines for buffer and margin adjustment
formatOutput x ==
- for [currentColumn,start,end,stack] in REVERSE $commentsToPrint repeat
+ for [currentColumn,start,end,stack] in reverse $commentsToPrint repeat
startY:= rest start
for [loc,comment] in stack repeat
commentY:= rest loc
@@ -177,7 +177,7 @@ consBuffer item ==
not isSpecialBufferItem item and (n>columnsLeft or columnsLeft < 0) =>
$autoLine =>
--is true except within try
- formatOutput REVERSE $lineFragmentBuffer
+ formatOutput reverse $lineFragmentBuffer
$c:= REMAINDER($m+2*($numberOfSpills:= $numberOfSpills+1), $lineLength)
$lineFragmentBuffer:= LIST nBlanks $c
consBuffer item
@@ -204,7 +204,7 @@ isCloseDelimiter item == EQ(item,")") or EQ(item,"]") or EQ(item,"}")
newLine() ==
null $autoLine => nil
$newLineWritten := true
- formatOutput REVERSE $lineFragmentBuffer
+ formatOutput reverse $lineFragmentBuffer
$lineFragmentBuffer:= LIST nBlanks $m
$c:= $m
@@ -214,7 +214,7 @@ optNewLine() ==
spillLine() ==
null $autoLine => nil
- formatOutput REVERSE $lineFragmentBuffer
+ formatOutput reverse $lineFragmentBuffer
$c:= $m+2*($numberOfSpills:= $numberOfSpills+1)
$lineFragmentBuffer:= LIST nBlanks $c
$c