From 5688a8a80e6c3d51607678e9c67979a4c2375cfc Mon Sep 17 00:00:00 2001 From: yoichi Date: Mon, 27 Jan 2003 15:04:02 +0000 Subject: [PATCH] * wl-highlight.el (wl-highlight-summary-line-string): Use wl-summary-score-below-mark, wl-summary-score-over-mark. --- wl/ChangeLog | 5 +++++ wl/wl-highlight.el | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/wl/ChangeLog b/wl/ChangeLog index 12a4364..046fd53 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,8 @@ +2003-01-28 Yoichi NAKAYAMA + + * wl-highlight.el (wl-highlight-summary-line-string): Use + wl-summary-score-below-mark, wl-summary-score-over-mark. + 2003-01-27 Yoichi NAKAYAMA * wl-draft.el (wl-draft-insert-from-field): Encode wl-from and diff --git a/wl/wl-highlight.el b/wl/wl-highlight.el index 05b2b76..50b2bd2 100644 --- a/wl/wl-highlight.el +++ b/wl/wl-highlight.el @@ -792,9 +792,9 @@ (setq fsymbol 'wl-highlight-summary-unread-face)) ((or (string= mark wl-summary-important-mark)) (setq fsymbol 'wl-highlight-summary-important-face)) - ((string= temp-mark "-") + ((string= temp-mark wl-summary-score-below-mark) (setq fsymbol 'wl-highlight-summary-low-read-face)) - ((string= temp-mark "+") + ((string= temp-mark wl-summary-score-over-mark) (setq fsymbol 'wl-highlight-summary-high-read-face)) (t (if (zerop (length indent)) (setq fsymbol 'wl-highlight-summary-thread-top-face) -- 1.7.10.4