diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-01-24 17:36:46 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-01-29 08:47:38 +0100 |
commit | 69218e84f119c698a06febe030946f1eca571e2c (patch) | |
tree | 407abfe97645d8c6cef269a444eed3a176aa288d /.dir-locals.el | |
parent | f38697f5f86de0ad5434b5c5679b6cff34c86797 (diff) | |
download | guix-69218e84f119c698a06febe030946f1eca571e2c.tar.gz |
.dir-locals.el: Don't mess up indentation of prepend and append.
The current version appears to assume special values in the first and second package, but it's either all lists (default append) or all package input expressions (inside modify-inputs), which themselves are either packages or lists consisting of a package and a string. * .dir-locals.el: Drop (eval . (put 'prepend 'scheme-indent-function 2)) and (eval . (put 'append 'scheme-indent-function 2)).
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 12a6f08739..0edf2a8d23 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -60,8 +60,6 @@ ;; '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)) |