diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-12-02 10:11:11 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-12-02 16:51:43 +0100 |
commit | 21caa6deebee28f07467c5fd1dcd5b8997393ca4 (patch) | |
tree | 03e256559c894771b87bea0cdd7e35fa9df9e937 /.dir-locals.el | |
parent | cc7fa5929c26fcdd53ce83ce7a46de4dfc7af1a2 (diff) | |
download | patches-21caa6deebee28f07467c5fd1dcd5b8997393ca4.tar patches-21caa6deebee28f07467c5fd1dcd5b8997393ca4.tar.gz |
monads: Add 'mwhen' and 'munless'.
* guix/monads.scm (mbegin): Add special '%current-monad' syntactic
keyword.
(mwhen, munless): New macros.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 106c35bce6..b099068dac 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -46,6 +46,8 @@ (eval . (put 'syntax-parameterize 'scheme-indent-function 1)) (eval . (put 'with-monad 'scheme-indent-function 1)) (eval . (put 'mbegin 'scheme-indent-function 1)) + (eval . (put 'mwhen 'scheme-indent-function 1)) + (eval . (put 'munless 'scheme-indent-function 1)) (eval . (put 'mlet* 'scheme-indent-function 2)) (eval . (put 'mlet 'scheme-indent-function 2)) (eval . (put 'run-with-store 'scheme-indent-function 1)) |