aboutsummaryrefslogtreecommitdiff
path: root/src/boot/translator.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-23 22:44:32 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-23 22:44:32 +0000
commit695a6c656681918abe4b20e04470dd266b4f6bbe (patch)
treee5efcaefebf2d89118a8a00a9e11ba5547826fe3 /src/boot/translator.boot
parentc3b3651a804ebbdf40b3b59490d62ac63e3bf233 (diff)
downloadopen-axiom-695a6c656681918abe4b20e04470dd266b4f6bbe.tar.gz
* boot/ast.boot: Tidy.
* boot/includer.boot: Likewise. * boot/parser.boot: Likewise. * boot/pile.boot: Likewise. * boot/scanner.boot: Likewise. * boot/tokens.boot: Likewise. * boot/translator.boot: Likewise. * boot/strap: Update Lisp translation. * lisp/core.lisp.in: Tidy.
Diffstat (limited to 'src/boot/translator.boot')
-rw-r--r--src/boot/translator.boot18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/boot/translator.boot b/src/boot/translator.boot
index bfaab592..a4c868f2 100644
--- a/src/boot/translator.boot
+++ b/src/boot/translator.boot
@@ -33,12 +33,12 @@
--
-module '"boot-translator"
-import '"includer"
-import '"scanner"
-import '"pile"
-import '"parser"
-import '"ast"
+module translator
+import includer
+import scanner
+import pile
+import parser
+import ast
)package "BOOTTRAN"
@@ -401,11 +401,11 @@ bpOutItem()==
Signature(op,t) =>
bpPush [genDeclaration(op,t)]
- Module(m) =>
- bpPush [shoeCompileTimeEvaluation ["PROVIDE", m]]
+ %Module(m) =>
+ bpPush [shoeCompileTimeEvaluation ["PROVIDE", STRING m]]
Import(m) =>
- bpPush [["IMPORT-MODULE", m]]
+ bpPush [["IMPORT-MODULE", STRING m]]
ImportSignature(x, sig) =>
bpPush genImportDeclaration(x, sig)