File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 13
13
* [ #1475 ] ( https://github.com/clojure-emacs/cider/pull/1475 ) : Fix ` args-out-of-range ` error in ` cider--get-symbol-indent ` .
14
14
* [ #1479 ] ( https://github.com/clojure-emacs/cider/pull/1479 ) : Make paredit and ` cider-repl-mode ` play nice.
15
15
* [ #1452 ] ( https://github.com/clojure-emacs/cider/issues/1452 ) : Prevent ANSI color overlays in the REPL buffer from being extended.
16
+ * [ #1486 ] ( https://github.com/clojure-emacs/cider/issues/1486 ) : Complete a partial fix in stacktrace font-locking.
16
17
17
18
## 0.10.0 / 2015-12-03
18
19
Original file line number Diff line number Diff line change @@ -497,7 +497,8 @@ This associates text properties to enable filtering and source navigation."
497
497
'flags flags 'follow-link t
498
498
'action 'cider-stacktrace-navigate
499
499
'help-echo " View source at this location"
500
- 'face 'cider-stacktrace-face )
500
+ 'font-lock-face 'cider-stacktrace-face
501
+ 'type 'cider-plain-button )
501
502
(save-excursion
502
503
(let ((p4 (point ))
503
504
(p1 (search-backward " " ))
Original file line number Diff line number Diff line change @@ -269,6 +269,10 @@ Unless you specify a BUFFER it will default to the current one."
269
269
" Font-lock STRING as Clojure code."
270
270
(cider-font-lock-as 'clojure-mode string))
271
271
272
+ ; ; Button allowing use of `font-lock-face' , ignoring any inherited `face'
273
+ (define-button-type 'cider-plain-button
274
+ 'face nil )
275
+
272
276
; ;; Colors
273
277
274
278
(defun cider-scale-color (color scale )
You can’t perform that action at this time.
0 commit comments