* wl-draft.el (wl-draft-insert-x-face-field): Use `goto-char'
authorkaoru <kaoru>
Mon, 26 Aug 2002 12:10:06 +0000 (12:10 +0000)
committerkaoru <kaoru>
Mon, 26 Aug 2002 12:10:06 +0000 (12:10 +0000)
instead of `beginning-of-buffer'.

wl/ChangeLog
wl/wl-draft.el

index d35e576..565c24e 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-26  TAKAHASHI Kaoru  <kaoru@kaisei.org>
+
+       * wl-draft.el (wl-draft-insert-x-face-field): Use `goto-char'
+       instead of `beginning-of-buffer'.
+
 2002-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * wl-xmas.el (wl-message-wheel-down): Fix parentheses.
index 9db958a..05d6955 100644 (file)
   (interactive)
   (if (not (file-exists-p wl-x-face-file))
       (error "File %s does not exist" wl-x-face-file)
-    (beginning-of-buffer)
+    (goto-char (point-min))
     (search-forward mail-header-separator nil t)
     (beginning-of-line)
     (wl-draft-insert-x-face-field-here)