File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 22
33## master (unreleased)
44
5+ ## 0.10.1 / (unreleased)
6+
7+ ### Bugs fixed
8+
9+ * [ #1475 ] ( https://github.com/clojure-emacs/cider/pull/1475 ) : Fix ` args-out-of-range ` error in ` cider--get-symbol-indent ` .
10+
511## 0.10.0 / 2015-12-03
612
713### New features
Original file line number Diff line number Diff line change @@ -289,7 +289,8 @@ Returns to the buffer in which the command was invoked."
289289 ; ; There's no indent metadata, but there might be a clojure-mode
290290 ; ; indent-spec with fully-qualified namespace.
291291 (when (string-match cider-resolve--prefix-regexp symbol-name)
292- (when-let ((sym (intern-soft (replace-match (cider-resolve-alias ns (match-string 1 symbol-name))
292+ (when-let ((sym (intern-soft (replace-match (save-match-data
293+ (cider-resolve-alias ns (match-string 1 symbol-name)))
293294 t t symbol-name 1 ))))
294295 (get sym 'clojure-indent-function ))))))
295296
You can’t perform that action at this time.
0 commit comments