* wl-draft.el (wl-draft-beginning-of-line): Treat the header with
plural lines.
+2002-06-13 KAMO Tomoyuki <kamo@i-manage.co.jp>
+
+ * wl-draft.el (wl-draft-beginning-of-line): Treat the header with
+ plural lines.
+
2002-06-11 Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>
* wl-draft.el (wl-draft-beginning-of-line): Move to the beginning
(let* ((here (point))
(bol (progn (beginning-of-line n) (point)))
(eol (line-end-position))
- (eoh (re-search-forward ": *" eol t)))
+ (eoh (and (looking-at "[^ \t]")
+ (re-search-forward ": *" eol t))))
(if (and eoh (or (> here eoh) (= here bol)))
(goto-char eoh)
(goto-char bol)))