summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.dir-locals.el4
-rw-r--r--guix-build.in4
-rw-r--r--tests/base32.scm4
-rw-r--r--tests/build-utils.scm6
-rw-r--r--tests/builders.scm4
-rw-r--r--tests/derivations.scm5
-rw-r--r--tests/packages.scm2
-rw-r--r--tests/snix.scm5
-rw-r--r--tests/store.scm4
-rw-r--r--tests/union.scm6
-rw-r--r--tests/utils.scm4
11 files changed, 4 insertions, 44 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 06c26534d8d..c7dc86fffe2 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -6,6 +6,10 @@
6 (scheme-mode 6 (scheme-mode
7 . 7 .
8 ((indent-tabs-mode . nil) 8 ((indent-tabs-mode . nil)
9 (eval . (put 'test-assert 'scheme-indent-function 1))
10 (eval . (put 'test-equal 'scheme-indent-function 1))
11 (eval . (put 'call-with-input-string 'scheme-indent-function 1))
12 (eval . (put 'guard 'scheme-indent-function 1))
9 (eval . (put 'lambda* 'scheme-indent-function 1)) 13 (eval . (put 'lambda* 'scheme-indent-function 1))
10 (eval . (put 'substitute* 'scheme-indent-function 1)) 14 (eval . (put 'substitute* 'scheme-indent-function 1))
11 (eval . (put 'with-directory-excursion 'scheme-indent-function 1)) 15 (eval . (put 'with-directory-excursion 'scheme-indent-function 1))
diff --git a/guix-build.in b/guix-build.in
index eb8d2fa0166..f8c71159992 100644
--- a/guix-build.in
+++ b/guix-build.in
@@ -301,7 +301,3 @@ Build the given PACKAGE-OR-DERIVATION and return their output paths.\n"))
301 (derivation-path->output-paths drv))) 301 (derivation-path->output-paths drv)))
302 drv) 302 drv)
303 roots))))))))) 303 roots)))))))))
304
305;; Local Variables:
306;; eval: (put 'guard 'scheme-indent-function 1)
307;; End:
diff --git a/tests/base32.scm b/tests/base32.scm
index 166ec4da1c0..d6745475579 100644
--- a/tests/base32.scm
+++ b/tests/base32.scm
@@ -95,7 +95,3 @@
95 95
96 96
97(exit (= (test-runner-fail-count (test-runner-current)) 0)) 97(exit (= (test-runner-fail-count (test-runner-current)) 0))
98
99;;; Local Variables:
100;;; eval: (put 'test-assert 'scheme-indent-function 1)
101;;; End:
diff --git a/tests/build-utils.scm b/tests/build-utils.scm
index 0df4cd27370..e94f04b2398 100644
--- a/tests/build-utils.scm
+++ b/tests/build-utils.scm
@@ -84,9 +84,3 @@
84 84
85 85
86(exit (= (test-runner-fail-count (test-runner-current)) 0)) 86(exit (= (test-runner-fail-count (test-runner-current)) 0))
87
88;;; Local Variables:
89;;; eval: (put 'test-assert 'scheme-indent-function 1)
90;;; eval: (put 'test-equal 'scheme-indent-function 1)
91;;; eval: (put 'call-with-input-string 'scheme-indent-function 1)
92;;; End:
diff --git a/tests/builders.scm b/tests/builders.scm
index 7fafaf5dcac..880dddd0b6f 100644
--- a/tests/builders.scm
+++ b/tests/builders.scm
@@ -93,7 +93,3 @@
93 93
94 94
95(exit (= (test-runner-fail-count (test-runner-current)) 0)) 95(exit (= (test-runner-fail-count (test-runner-current)) 0))
96
97;;; Local Variables:
98;;; eval: (put 'test-assert 'scheme-indent-function 1)
99;;; End:
diff --git a/tests/derivations.scm b/tests/derivations.scm
index 314942a3521..98c34b416df 100644
--- a/tests/derivations.scm
+++ b/tests/derivations.scm
@@ -547,8 +547,3 @@
547 547
548 548
549(exit (= (test-runner-fail-count (test-runner-current)) 0)) 549(exit (= (test-runner-fail-count (test-runner-current)) 0))
550
551;;; Local Variables:
552;;; eval: (put 'test-assert 'scheme-indent-function 1)
553;;; eval: (put 'guard 'scheme-indent-function 1)
554;;; End:
diff --git a/tests/packages.scm b/tests/packages.scm
index 8b0f29e6bc2..32ee5585180 100644
--- a/tests/packages.scm
+++ b/tests/packages.scm
@@ -168,7 +168,5 @@
168(exit (= (test-runner-fail-count (test-runner-current)) 0)) 168(exit (= (test-runner-fail-count (test-runner-current)) 0))
169 169
170;;; Local Variables: 170;;; Local Variables:
171;;; eval: (put 'test-equal 'scheme-indent-function 2)
172;;; eval: (put 'test-assert 'scheme-indent-function 1)
173;;; eval: (put 'dummy-package 'scheme-indent-function 1) 171;;; eval: (put 'dummy-package 'scheme-indent-function 1)
174;;; End: 172;;; End:
diff --git a/tests/snix.scm b/tests/snix.scm
index 89582f2408e..9d692e9c02d 100644
--- a/tests/snix.scm
+++ b/tests/snix.scm
@@ -72,8 +72,3 @@
72 72
73 73
74(exit (= (test-runner-fail-count (test-runner-current)) 0)) 74(exit (= (test-runner-fail-count (test-runner-current)) 0))
75
76;;; Local Variables:
77;;; eval: (put 'test-assert 'scheme-indent-function 1)
78;;; eval: (put 'guard 'scheme-indent-function 1)
79;;; End:
diff --git a/tests/store.scm b/tests/store.scm
index c10c035d5de..1ff6aa05c2a 100644
--- a/tests/store.scm
+++ b/tests/store.scm
@@ -81,7 +81,3 @@
81 81
82 82
83(exit (= (test-runner-fail-count (test-runner-current)) 0)) 83(exit (= (test-runner-fail-count (test-runner-current)) 0))
84
85;;; Local Variables:
86;;; eval: (put 'test-assert 'scheme-indent-function 1)
87;;; End:
diff --git a/tests/union.scm b/tests/union.scm
index 455bdb208d9..87450d74fd8 100644
--- a/tests/union.scm
+++ b/tests/union.scm
@@ -119,9 +119,3 @@
119 119
120 120
121(exit (= (test-runner-fail-count (test-runner-current)) 0)) 121(exit (= (test-runner-fail-count (test-runner-current)) 0))
122
123;;; Local Variables:
124;;; eval: (put 'test-assert 'scheme-indent-function 1)
125;;; eval: (put 'test-equal 'scheme-indent-function 1)
126;;; eval: (put 'call-with-input-string 'scheme-indent-function 1)
127;;; End:
diff --git a/tests/utils.scm b/tests/utils.scm
index 96496c5f846..bcdd120a74c 100644
--- a/tests/utils.scm
+++ b/tests/utils.scm
@@ -183,7 +183,3 @@
183 183
184 184
185(exit (= (test-runner-fail-count (test-runner-current)) 0)) 185(exit (= (test-runner-fail-count (test-runner-current)) 0))
186
187;;; Local Variables:
188;;; eval: (put 'test-assert 'scheme-indent-function 1)
189;;; End: