diff options
author | Andy Wingo <wingo@pobox.com> | 2020-05-09 21:53:02 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2020-05-09 21:53:02 +0200 |
commit | c49ccfbc3d9530efcff54f99a9b927af05409e2c (patch) | |
tree | 9113b1168dbbf47d1814d8d9a8b1d2cf6af25f7c | |
parent | b5a52b496112f882485373c89863791f695c3423 (diff) | |
download | guile-c49ccfbc3d9530efcff54f99a9b927af05409e2c.tar.gz |
Fix parens in .dir-locals.el
* .dir-locals.el (c-mode): Fix parens. Doh!
-rw-r--r-- | .dir-locals.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 22464d327..c9879553f 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -42,7 +42,7 @@ (eval . (put '$letrec 'scheme-indent-function 3)) (eval . (put '$kclause 'scheme-indent-function 1)) (eval . (put '$fun 'scheme-indent-function 1)) - (eval . (put 'syntax-parameterize 'scheme-indent-function 1)))))) + (eval . (put 'syntax-parameterize 'scheme-indent-function 1)))) (emacs-lisp-mode . ((indent-tabs-mode . nil))) (texinfo-mode . ((indent-tabs-mode . nil) (fill-column . 72)))) |