summaryrefslogtreecommitdiff
path: root/helm-source.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2020-05-28 09:53:54 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2020-05-28 09:53:54 +0200
commit16e4794d60a0fd32691e1ec7e38e1996cc697c66 (patch)
tree616d19cc8a5c2728838a0ae3f8b1248e66892ca3 /helm-source.el
parentb95e9a69b9763dedec3232232cc55d337c7a3697 (diff)
Use bold face for class slots in help
* helm-source.el (helm-source--cl--print-table): Do it.
Diffstat (limited to 'helm-source.el')
-rw-r--r--helm-source.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-source.el b/helm-source.el
index 71369f52..5e5a5bed 100644
--- a/helm-source.el
+++ b/helm-source.el
@@ -48,7 +48,7 @@
"Advice for `cl--print-table' to make readable class slots docstrings."
(let ((format "%s\n\n Initform=%s\n\n%s"))
(dolist (row rows)
- (setcar row (propertize (car row) 'face 'italic))
+ (setcar row (propertize (car row) 'face 'bold))
(setcdr row (nthcdr 1 (cdr row)))
(insert "\n* " (apply #'format format row) "\n"))))