diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-10-19 16:33:17 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-10-20 00:33:26 +0200 |
commit | dd19f3c39de08c1bd48adf571424a7169c968f52 (patch) | |
tree | e1b01dd5e226d1cc353bf73cc32232037954ef84 /.dir-locals.el | |
parent | 2aa45d03475f7bd27d4ba5bc71b0cb812aa74768 (diff) |
.dir-locals.el: Adjust indentation rule for ‘test-assertm’.
This reverts commit 92755c6352fd967bc74d8e5354aad057d779b717, which, at
the time, was correct for the 3-argument ‘test-assertm’ macro in
‘tests/pack.scm’ but incorrect for the 2-argument variant found in
other test files.
* .dir-locals.el: Decrease argument count for ‘test-assertm’.
Diffstat (limited to '.dir-locals.el')
-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 c63262848c..d18e6ba760 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -43,7 +43,7 @@ (eval . (put 'eval-when 'scheme-indent-function 1)) (eval . (put 'call-with-prompt 'scheme-indent-function 1)) (eval . (put 'test-assert 'scheme-indent-function 1)) - (eval . (put 'test-assertm 'scheme-indent-function 2)) + (eval . (put 'test-assertm 'scheme-indent-function 1)) (eval . (put 'test-equalm 'scheme-indent-function 1)) (eval . (put 'test-equal 'scheme-indent-function 1)) (eval . (put 'test-eq 'scheme-indent-function 1)) |