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 2
2
3
3
## master (unreleased)
4
4
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
+
5
11
## 0.10.0 / 2015-12-03
6
12
7
13
### 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."
289
289
; ; There's no indent metadata, but there might be a clojure-mode
290
290
; ; indent-spec with fully-qualified namespace.
291
291
(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)))
293
294
t t symbol-name 1 ))))
294
295
(get sym 'clojure-indent-function ))))))
295
296
You can’t perform that action at this time.
0 commit comments