* wl-mule.el (wl-highlight-folder-current-line): Ditto.
+2000-10-12 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl-xmas.el (wl-highlight-folder-current-line): Remove previous face.
+
+ * wl-mule.el (wl-highlight-folder-current-line): Ditto.
+
2000-10-11 Yuuichi Teranishi <teranisi@gohome.org>
* wl-highlight.el (wl-highlight-folder-group-line): Remove previous
(progn
(put-text-property start (match-beginning 0) 'face text-face)
(put-text-property (match-beginning 0) (point) 'face face))
+ ;; Remove previous face.
+ (put-text-property start (point) 'face nil)
(put-text-property start (point) 'face face))
(goto-char start))
(put-text-property start end 'face text-face)))
(put-text-property (match-beginning 0)
(match-end 0)
'face face))
+ ;; Remove previous face.
+ (put-text-property start (match-end 0) 'face nil)
(put-text-property start (match-end 0) 'face face)))
(put-text-property start end 'face text-face))))))))))