summaryrefslogtreecommitdiff
path: root/cider-browse-ns.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-11-24 09:12:37 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2015-11-24 09:12:37 +0200
commitaf21a1c462111746afaff5da65e85f0c8b8af9b6 (patch)
tree4f314ab0a467160bdd886756fff8125c86f9de50 /cider-browse-ns.el
parenta474c3fbe8f25663945c9a96ffcb6fa1b7c0b6c1 (diff)
Use `cider-propertize-ns` wherever possible
Diffstat (limited to 'cider-browse-ns.el')
-rw-r--r--cider-browse-ns.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/cider-browse-ns.el b/cider-browse-ns.el
index 4a61dcee..7b79084d 100644
--- a/cider-browse-ns.el
+++ b/cider-browse-ns.el
@@ -88,8 +88,7 @@ contents of the buffer are not reset before inserting TITLE and ITEMS."
(let ((inhibit-read-only t))
(unless noerase (erase-buffer))
(goto-char (point-max))
- (insert (propertize title 'font-lock-face 'font-lock-type-face)
- "\n")
+ (insert (cider-propertize-ns title) "\n")
(dolist (item items)
(insert (propertize (concat " " item "\n")
'cider-browse-ns-current-ns ns)))