* wl-highlight.el (wl-highlight-message): Ignore white spaces
authoryoichi <yoichi>
Mon, 17 May 2004 15:48:40 +0000 (15:48 +0000)
committeryoichi <yoichi>
Mon, 17 May 2004 15:48:40 +0000 (15:48 +0000)
at the beginning of field body (Thanks to Markus Knittig).

wl/ChangeLog
wl/wl-highlight.el

index 08d4aac..fec674f 100644 (file)
@@ -1,5 +1,8 @@
 2004-05-18  Yoichi NAKAYAMA  <yoichi@geiin.org>
 
+       * wl-highlight.el (wl-highlight-message): Ignore white spaces
+       at the beginning of field body (Thanks to Markus Knittig).
+
        * wl-draft.el (wl-draft-insert-current-message): Also check
        summary buffer, remove unnecessary tag.
 
index d3fbd44..fb28b67 100644 (file)
@@ -1172,7 +1172,7 @@ interpreted as cited text.)"
              (goto-char start)
              (while (and (not body-only)
                          (not (eobp)))
-               (if (looking-at "^[^ \t\n:]+[ \t]*:")
+               (if (looking-at "^[^ \t\n:]+[ \t]*:[ \t]*")
                    (progn
                      (put-text-property (match-beginning 0) (match-end 0)
                                         'face 'wl-highlight-message-headers)