aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/macro/syntax.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/macro/syntax.lux7
1 files changed, 4 insertions, 3 deletions
diff --git a/stdlib/source/lux/macro/syntax.lux b/stdlib/source/lux/macro/syntax.lux
index 4dcbc725f..738ae2a22 100644
--- a/stdlib/source/lux/macro/syntax.lux
+++ b/stdlib/source/lux/macro/syntax.lux
@@ -1,6 +1,7 @@
(.module:
[lux #*
- ["." meta (#+ with_gensyms)]
+ ["." macro (#+ with_gensyms)]
+ ["." meta]
[abstract
["." monad (#+ do)]]
[control
@@ -104,7 +105,7 @@
args)
this_module meta.current_module_name
#let [g!state (code.identifier ["" "*compiler*"])
- error_msg (code.text (meta.wrong_syntax_error [this_module name]))
+ error_msg (code.text (macro.wrong_syntax_error [this_module name]))
export_ast (: (List Code)
(if exported?
(list (' #export))
@@ -124,4 +125,4 @@
(~ g!tokens)))))))))
_
- (meta.fail (meta.wrong_syntax_error (name_of ..syntax:))))))
+ (meta.fail (macro.wrong_syntax_error (name_of ..syntax:))))))