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 ab083ae commit ae5f46dCopy full SHA for ae5f46d
clojure-mode.el
@@ -329,7 +329,8 @@ This function also returns nil meaning don't specify the indentation."
329
;; thing on that line has to be complete sexp since we are
330
;; inside the innermost containing sexp.
331
(backward-prefix-chars)
332
- (if (eq (char-after (point)) ?\[)
+ (if (and (eq (char-after (point)) ?\[)
333
+ (eq (char-after (elt state 1)) ?\())
334
(+ (current-column) 2) ;; this is probably inside a defn
335
(current-column)))
336
(let ((function (buffer-substring (point)
0 commit comments