From: plugd Date: Tue, 6 Jul 2021 09:43:10 +0000 (+0200) Subject: Message prefixes now have context face. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=lurk.git;a=commitdiff_plain;h=028a407ca8feb38940a17e7d9dc44affddf92bfb Message prefixes now have context face. --- diff --git a/lurk.el b/lurk.el index fb1c258..a8f8a7a 100644 --- a/lurk.el +++ b/lurk.el @@ -442,11 +442,13 @@ portion of the source component of the message, as LURK doesn't use this.") (if (equal to lurk-nick) from to)))) (lurk-display-string context - (pcase (lurk-get-context-type to) - ('channel (concat to " <" from ">")) - ('nick (concat "[" from " -> " to "]")) - (_ - (error "Unsupported context type"))) + (propertize + (pcase (lurk-get-context-type to) + ('channel (concat to " <" from ">")) + ('nick (concat "[" from " -> " to "]")) + (_ + (error "Unsupported context type"))) + 'face (lurk-get-context-facelist context)) text))) (defun lurk-display-action (from to action-text)