From 78df756a09a45881882cab105e9b1cf20b1f3408 Mon Sep 17 00:00:00 2001 From: yoichi Date: Mon, 26 May 2003 14:56:33 +0000 Subject: [PATCH] * wl-highlight.el (wl-highlight-summary-current-line): Remove trivial condition for temp-mark. --- wl/ChangeLog | 5 +++++ wl/wl-highlight.el | 24 ++++++++++++------------ 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/wl/ChangeLog b/wl/ChangeLog index 56b5dd5..6b00436 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,8 @@ +2003-05-26 Yoichi NAKAYAMA + + * wl-highlight.el (wl-highlight-summary-current-line): Remove + trivial condition for temp-mark. + 2003-05-24 Yoichi NAKAYAMA * wl-message.el (wl-message-buffer-cache-add): Create new buffer diff --git a/wl/wl-highlight.el b/wl/wl-highlight.el index 0a7102b..31a47cc 100644 --- a/wl/wl-highlight.el +++ b/wl/wl-highlight.el @@ -810,18 +810,18 @@ (beginning-of-line) (setq bol (point)) (setq status-mark (wl-summary-persistent-mark)) - (when (setq temp-mark (wl-summary-temp-mark)) - (cond - ((string= temp-mark "*") - (setq fsymbol 'wl-highlight-summary-temp-face)) - ((string= temp-mark "D") - (setq fsymbol 'wl-highlight-summary-deleted-face)) - ((string= temp-mark "O") - (setq fsymbol 'wl-highlight-summary-copied-face - dest t)) - ((string= temp-mark "o") - (setq fsymbol 'wl-highlight-summary-refiled-face - dest t)))) + (setq temp-mark (wl-summary-temp-mark)) + (cond + ((string= temp-mark "*") + (setq fsymbol 'wl-highlight-summary-temp-face)) + ((string= temp-mark "D") + (setq fsymbol 'wl-highlight-summary-deleted-face)) + ((string= temp-mark "O") + (setq fsymbol 'wl-highlight-summary-copied-face + dest t)) + ((string= temp-mark "o") + (setq fsymbol 'wl-highlight-summary-refiled-face + dest t))) (if (not fsymbol) (cond ((and (string= temp-mark wl-summary-score-over-mark) -- 1.7.10.4