aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/meta/macro/local.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-08-30 19:33:36 -0400
committerEduardo Julian2022-08-30 19:33:36 -0400
commitd0e4ba8124345ce990de7fdf7497dd903de6c342 (patch)
treee8cc8f5e41615ca9ca536f71ddec8aca7f882a6c /stdlib/source/library/lux/meta/macro/local.lux
parentb135e487e8f705a5fea7b9ef785310572642063a (diff)
Got rid of the superfluous "lux macro" extension.
Diffstat (limited to 'stdlib/source/library/lux/meta/macro/local.lux')
-rw-r--r--stdlib/source/library/lux/meta/macro/local.lux24
1 files changed, 12 insertions, 12 deletions
diff --git a/stdlib/source/library/lux/meta/macro/local.lux b/stdlib/source/library/lux/meta/macro/local.lux
index 48ca7db43..d1e9c9475 100644
--- a/stdlib/source/library/lux/meta/macro/local.lux
+++ b/stdlib/source/library/lux/meta/macro/local.lux
@@ -86,18 +86,18 @@
(def (pop_all macros self)
(-> (List Symbol) Symbol Macro)
- ("lux macro"
- (function (_ _)
- (do [! meta.monad]
- [_ (monad.each ! ..pop_one macros)
- _ (..pop_one self)
- compiler meta.compiler_state]
- (in (when (the .#expected compiler)
- {.#Some _}
- (list (' []))
-
- {.#None}
- (list)))))))
+ (//.macro
+ (function (_ _)
+ (do [! meta.monad]
+ [_ (monad.each ! ..pop_one macros)
+ _ (..pop_one self)
+ compiler meta.compiler_state]
+ (in (when (the .#expected compiler)
+ {.#Some _}
+ (list (' []))
+
+ {.#None}
+ (list)))))))
(def .public (push macros)
(-> (List [Symbol Macro]) (Meta Code))