aboutsummaryrefslogtreecommitdiff
path: root/src/boot/strap/includer.clisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/strap/includer.clisp')
-rw-r--r--src/boot/strap/includer.clisp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/boot/strap/includer.clisp b/src/boot/strap/includer.clisp
index 167e7f2a..f43cbfb8 100644
--- a/src/boot/strap/includer.clisp
+++ b/src/boot/strap/includer.clisp
@@ -4,6 +4,16 @@
(IN-PACKAGE "BOOTTRAN")
+(DEFPARAMETER |%UnknownMode| (LIST '|%UnknownMode|))
+
+(DEFPARAMETER |%TranslateMode| (LIST '|%TranslateMode|))
+
+(DEFPARAMETER |%CompileMode| (LIST '|%CompileMode|))
+
+(DEFPARAMETER |%MakeMode| (LIST '|%MakeMode|))
+
+(DEFPARAMETER |$driverMode| |%UnknownMode|)
+
(DEFUN PNAME (|x|)
(COND
((SYMBOLP |x|) (SYMBOL-NAME |x|))