We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2046fc commit a9e44f9Copy full SHA for a9e44f9
test/clojure-mode-indentation-test.el
@@ -325,7 +325,8 @@ values of customisable variables."
325
;; `scan-error'. In that case, we should return the
326
;; indentation as if there were an extra sexp at point.
327
(scan-error (cl-incf pos)))
328
- (+ base-col (if (evenp pos) 0 2))))
+ (+ base-col (if (= (% pos 2) 0)
329
+ 0 2))))
330
(put-clojure-indent 'test-cond #'indent-cond)
331
332
(defun indent-cond-0 (_indent-point _state) 0)
0 commit comments