* wl-highlight.el (wl-highlight-summary-current-line): Remove
authoryoichi <yoichi>
Mon, 26 May 2003 14:56:33 +0000 (14:56 +0000)
committeryoichi <yoichi>
Mon, 26 May 2003 14:56:33 +0000 (14:56 +0000)
trivial condition for temp-mark.

wl/ChangeLog
wl/wl-highlight.el

index 56b5dd5..6b00436 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-26  Yoichi NAKAYAMA  <yoichi@geiin.org>
+
+       * wl-highlight.el (wl-highlight-summary-current-line): Remove
+       trivial condition for temp-mark.
+
 2003-05-24  Yoichi NAKAYAMA  <yoichi@geiin.org>
 
        * wl-message.el (wl-message-buffer-cache-add): Create new buffer
index 0a7102b..31a47cc 100644 (file)
       (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)