2002-06-13 KAMO Tomoyuki <kamo@i-manage.co.jp>
authoryoichi <yoichi>
Thu, 13 Jun 2002 03:43:40 +0000 (03:43 +0000)
committeryoichi <yoichi>
Thu, 13 Jun 2002 03:43:40 +0000 (03:43 +0000)
* wl-draft.el (wl-draft-beginning-of-line): Treat the header with
plural lines.

wl/ChangeLog
wl/wl-draft.el

index c6fb8ab..1820fe3 100644 (file)
@@ -1,3 +1,8 @@
+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
index 632e36a..b74d455 100644 (file)
@@ -792,7 +792,8 @@ text was killed."
       (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)))