aboutsummaryrefslogtreecommitdiff
path: root/luxc/src/lux/base.clj
diff options
context:
space:
mode:
Diffstat (limited to 'luxc/src/lux/base.clj')
-rw-r--r--luxc/src/lux/base.clj5
1 files changed, 2 insertions, 3 deletions
diff --git a/luxc/src/lux/base.clj b/luxc/src/lux/base.clj
index 7e36ca903..98b6ce4e8 100644
--- a/luxc/src/lux/base.clj
+++ b/luxc/src/lux/base.clj
@@ -134,8 +134,7 @@
;; Compiler
(defvariant
- ("Release" 0)
- ("Debug" 0)
+ ("Build" 0)
("Eval" 0)
("REPL" 0))
@@ -1006,7 +1005,7 @@
(|do [_mode get-mode]
(fn [state]
(let [output (body (if (in-repl? _mode)
- (update$ $info #(set$ $compiler-mode $Debug %) state)
+ (update$ $info #(set$ $compiler-mode $Build %) state)
state))]
(|case output
($Right state* datum)