diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-03-06 11:25:43 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-03-12 18:32:15 +0100 |
commit | cf2ac04f13d9266c7c8a2ebd2e85ef593231ac9d (patch) | |
tree | 409921980504c7138e4dac8769823fb50becc516 /.dir-locals.el | |
parent | be78906592c761aa2a67e979074561e459efdcac (diff) | |
download | patches-cf2ac04f13d9266c7c8a2ebd2e85ef593231ac9d.tar patches-cf2ac04f13d9266c7c8a2ebd2e85ef593231ac9d.tar.gz |
gexp: Add 'with-parameters'.
* guix/gexp.scm (<parameterized>): New record type.
(with-parameters): New macro.
(compile-parameterized): New gexp compiler.
* tests/gexp.scm ("with-parameters for %current-system")
("with-parameters for %current-target-system")
("with-parameters + file-append"): New tests.
* doc/guix.texi (G-Expressions): Document it.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 5ce3fbc9a5..1976f7e60d 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -83,6 +83,7 @@ (eval . (put 'wrap-program 'scheme-indent-function 1)) (eval . (put 'with-imported-modules 'scheme-indent-function 1)) (eval . (put 'with-extensions 'scheme-indent-function 1)) + (eval . (put 'with-parameters 'scheme-indent-function 1)) (eval . (put 'with-database 'scheme-indent-function 2)) (eval . (put 'call-with-transaction 'scheme-indent-function 2)) |