From 028a407ca8feb38940a17e7d9dc44affddf92bfb Mon Sep 17 00:00:00 2001 From: plugd Date: Tue, 6 Jul 2021 11:43:10 +0200 Subject: [PATCH] Message prefixes now have context face. --- lurk.el | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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) -- 2.20.1