diff options
author | Eduardo Julian | 2020-09-16 05:54:25 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-09-16 05:54:25 -0400 |
commit | c10e3c13866ef25bab020ec597fd11aa8d01c862 (patch) | |
tree | 02fbc9123f93eb3768423cbe4f256f988215cf17 /stdlib/source/lux/abstract | |
parent | b1f0014dd9080c6643ecd73db5233fbdff032419 (diff) |
Changed the format of project descriptor files.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/abstract/monad/indexed.lux | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdlib/source/lux/abstract/monad/indexed.lux b/stdlib/source/lux/abstract/monad/indexed.lux index caa233884..2f42c0176 100644 --- a/stdlib/source/lux/abstract/monad/indexed.lux +++ b/stdlib/source/lux/abstract/monad/indexed.lux @@ -7,7 +7,8 @@ [data [collection ["." list ("#@." functor fold)]]] - ["." macro + ["." meta] + [macro [syntax (#+ syntax:)] ["." code]]]) @@ -53,7 +54,7 @@ (syntax: #export (do {[?name monad] ..named-monad} {context (s.tuple (p.some context))} expression) - (macro.with-gensyms [g!_ g!bind] + (meta.with-gensyms [g!_ g!bind] (let [body (list@fold (function (_ context next) (case context (#Let bindings) |