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 718bda9 commit 1d75bdeCopy full SHA for 1d75bde
cider-popup.el
@@ -123,9 +123,7 @@ and non-nil."
123
(goto-char cider-popup-output-marker)
124
(let ((value-str (format "%s" value)))
125
(when face
126
- (if (fboundp 'add-face-text-property)
127
- (add-face-text-property 0 (length value-str) face nil value-str)
128
- (add-text-properties 0 (length value-str) (list 'face face) value-str)))
+ (add-face-text-property 0 (length value-str) face nil value-str))
129
(insert value-str))
130
(unless inhibit-indent
131
(indent-sexp))
0 commit comments