Skip to content

Commit d50e1fa

Browse files
committed
Fix the broken build
1 parent a4ed7a4 commit d50e1fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/clojure-mode-indentation-test.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,14 +238,14 @@ values of customisable variables."
238238
(declare (indent 1))
239239
(when (stringp style)
240240
(setq forms (cons style forms))
241-
(setq style 'always-align))
241+
(setq style '(quote always-align)))
242242
`(ert-deftest ,(intern (format "test-backtracking-%s" name)) ()
243243
(progn
244244
,@(mapcar (lambda (form)
245245
`(with-temp-buffer
246246
(clojure-mode)
247247
(insert "\n" ,(replace-regexp-in-string "\n +" "\n " form))
248-
(let ((clojure-indent-style (quote ,style)))
248+
(let ((clojure-indent-style ,style))
249249
(indent-region (point-min) (point-max)))
250250
(should (equal (buffer-string)
251251
,(concat "\n" form)))))

0 commit comments

Comments
 (0)