civodul pushed a commit to branch wip-simplified-packages in repository guix.
commit e41a65175a99997318aa088f0871aeac5497571f Author: Ludovic Courtès <[email protected]> AuthorDate: Sun Jun 27 16:13:11 2021 +0200 squash! packages: Add 'modify-inputs'. * dir-locals.el: Add 'modify-inputs' and its keywords. --- .dir-locals.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.dir-locals.el b/.dir-locals.el index 378071e..8cddfd7 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -57,6 +57,12 @@ (eval . (put 'substitute* 'scheme-indent-function 1)) (eval . (put 'match-record 'scheme-indent-function 2)) + ;; 'modify-inputs' and its keywords. + (eval . (put 'modify-inputs 'scheme-indent-function 1)) + (eval . (put 'replace 'scheme-indent-function 1)) + (eval . (put 'prepend 'scheme-indent-function 2)) + (eval . (put 'append 'scheme-indent-function 2)) + ;; 'modify-phases' and its keywords. (eval . (put 'modify-phases 'scheme-indent-function 1)) (eval . (put 'replace 'scheme-indent-function 1))
