Skip to content

Commit 1d75bde

Browse files
committed
Kill some legacy compatibility code
1 parent 718bda9 commit 1d75bde

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cider-popup.el

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,7 @@ and non-nil."
123123
(goto-char cider-popup-output-marker)
124124
(let ((value-str (format "%s" value)))
125125
(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)))
126+
(add-face-text-property 0 (length value-str) face nil value-str))
129127
(insert value-str))
130128
(unless inhibit-indent
131129
(indent-sexp))

0 commit comments

Comments
 (0)