diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux.lux | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/stdlib/source/lux.lux b/stdlib/source/lux.lux index 4f48518a1..793cf5a4d 100644 --- a/stdlib/source/lux.lux +++ b/stdlib/source/lux.lux @@ -5547,7 +5547,7 @@ ["Text"]) (#Named _ type') - type' + (flatten-alias type') _ type)) @@ -5576,7 +5576,9 @@ (case token [_ (#Identifier [def-prefix def-name])] (if (text/= "" def-prefix) - (:: Monad<Meta> return token) + (do Monad<Meta> + [current-module current-module-name] + (anti-quote-def [current-module def-name])) (anti-quote-def [def-prefix def-name])) (^template [<tag>] |