aboutsummaryrefslogtreecommitdiff
path: root/src/boot/tokens.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-07-03 16:53:30 +0000
committerdos-reis <gdr@axiomatics.org>2011-07-03 16:53:30 +0000
commit67a9b503724a4390abf08baa367959713483f363 (patch)
tree6380b619a86bb58768d8bb3e37387acd808ed6f6 /src/boot/tokens.boot
parentcd75300236a7e0bd4b2ba0818721deb92c522aa7 (diff)
downloadopen-axiom-67a9b503724a4390abf08baa367959713483f363.tar.gz
* boot/tokens.boot: flushOutput, writeNewline, writeString
are new builtin library functions. * boot/utility.boot (finishLine): New exported function. * interp/i-output.boot (formulaFormat): Use it. (texFormat): Likewise. (texFormat1): Likewise. (mathmlFormat): Likewise. (output): Remove case for TextWriter.
Diffstat (limited to 'src/boot/tokens.boot')
-rw-r--r--src/boot/tokens.boot8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/boot/tokens.boot b/src/boot/tokens.boot
index c0b8134e..e9fde37d 100644
--- a/src/boot/tokens.boot
+++ b/src/boot/tokens.boot
@@ -270,6 +270,7 @@ for i in [ _
["false", 'NIL] , _
["first", "CAR"] , _
["float?", "FLOATP"] , _
+ ["flushOutput", "FORCE-OUTPUT"], _
["fourth", "CADDDR"] , _
["function","FUNCTION"] , _
["function?","FUNCTIONP"] , _
@@ -325,8 +326,11 @@ for i in [ _
["valueEq?", "EQUAL"] , _
["vector?", "SIMPLE-VECTOR-P"], _
["vectorRef", "SVREF"] , _
- ["writeByte", "WRITE-BYTE"], _
- ["writeLine", "WRITE-LINE"], _
+ ["writeByte", "WRITE-BYTE"], _
+ ["writeChar", "WRITE-CHAR"], _
+ ["writeLine", "WRITE-LINE"], _
+ ["writeNewline", "TERPRI"], _
+ ["writeString", "WRITE-STRING"], _
["PLUS", "+"] , _
["MINUS", "-"] , _
["TIMES", "*"] , _