mu4e: propertize the colon in view header keys

This commit is contained in:
Sasha Kovar 2013-02-21 10:52:58 -08:00
parent 4e132ef74c
commit 23dd3bb27e
1 changed files with 2 additions and 2 deletions

View File

@ -255,9 +255,9 @@ add text-properties to VAL."
(help (plist-get info :help)))
(if (and val (> (length val) 0))
(with-temp-buffer
(insert (propertize key
(insert (propertize (concat key ":")
'face 'mu4e-view-header-key-face
'help-echo help) ": "
'help-echo help) " "
(if dont-propertize-val
val
(propertize val 'face 'mu4e-view-header-value-face)) "\n")