File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -226,13 +226,14 @@ values of customisable variables."
226226 (declare (indent 1 ))
227227 `(ert-deftest ,(intern (format " test-backtracking-%s " name)) ()
228228 (progn
229- ,@(dolist (form forms)
230- `(with-temp-buffer
231- (clojure-mode)
232- (insert " \n " ,(replace-regexp-in-string " \n +" " \n " form))
233- (indent-region (point-min ) (point-max ))
234- (should (equal (buffer-string )
235- ,(concat " \n " form))))))))
229+ ,@(mapcar (lambda (form )
230+ `(with-temp-buffer
231+ (clojure-mode)
232+ (insert " \n " ,(replace-regexp-in-string " \n +" " \n " form))
233+ (indent-region (point-min ) (point-max ))
234+ (should (equal (buffer-string )
235+ ,(concat " \n " form)))))
236+ forms))))
236237
237238(def-full-indent-test closing-paren
238239 " (ns ca
You can’t perform that action at this time.
0 commit comments