From 443a597a4a92e56b34431e94a4e063c373bd704e Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 15 Nov 2015 19:16:05 +0000 Subject: Ensure that the ": " doesn't get colored in cider-test-echo-summary --- cider-test.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cider-test.el') diff --git a/cider-test.el b/cider-test.el index 6fa0a5de..0ea94298 100644 --- a/cider-test.el +++ b/cider-test.el @@ -332,7 +332,8 @@ With the actual value, the outermost '(not ...)' s-expression is removed." 'face (cond ((not (zerop error)) 'cider-test-error-face) ((not (zerop fail)) 'cider-test-failure-face) (t 'cider-test-success-face))) - (concat (propertize ns 'face 'font-lock-type-face) ": ") + (concat (propertize ns 'face 'font-lock-type-face) + (propertize ": " 'face 'default)) test fail error))) ;;; Test definition highlighting -- cgit v1.2.3