We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4ed7a4 commit d50e1faCopy full SHA for d50e1fa
test/clojure-mode-indentation-test.el
@@ -238,14 +238,14 @@ values of customisable variables."
238
(declare (indent 1))
239
(when (stringp style)
240
(setq forms (cons style forms))
241
- (setq style 'always-align))
+ (setq style '(quote always-align)))
242
`(ert-deftest ,(intern (format "test-backtracking-%s" name)) ()
243
(progn
244
,@(mapcar (lambda (form)
245
`(with-temp-buffer
246
(clojure-mode)
247
(insert "\n" ,(replace-regexp-in-string "\n +" "\n " form))
248
- (let ((clojure-indent-style (quote ,style)))
+ (let ((clojure-indent-style ,style))
249
(indent-region (point-min) (point-max)))
250
(should (equal (buffer-string)
251
,(concat "\n" form)))))
0 commit comments