* message.el (message-forward, message-indent-citation): Replace the use of
authoryamaoka <yamaoka>
Tue, 16 May 2000 07:30:00 +0000 (07:30 +0000)
committeryamaoka <yamaoka>
Tue, 16 May 2000 07:30:00 +0000 (07:30 +0000)
`eolp' with `bolp' for detecting the start of the line.

ChangeLog
lisp/message.el

index 059e3f5..4dd8a73 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-05-16  Katsumi Yamaoka <yamaoka@jpl.org>
+
+       * lisp/message.el (message-forward) Replace the use of `eolp' with
+       `bolp' for detecting the start of the line.
+       (message-indent-citation): Ditto.
+
 2000-05-10   Daiki Ueno  <ueno@unixuser.org>
 
        * lisp/gnus-bbdb.el (gnus-bbdb/pop-up-bbdb-buffer): Don't bind
index bc15862..57b6b44 100644 (file)
@@ -2261,7 +2261,7 @@ However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
       (message-delete-line))
     ;; Delete blank lines at the end of the buffer.
     (goto-char (point-max))
-    (unless (eolp)
+    (unless (bolp)
       (insert "\n"))
     (while (and (zerop (forward-line -1))
                (looking-at "$"))
@@ -4908,7 +4908,7 @@ Optional NEWS will use news to forward instead of mail."
        (message-goto-body)
       (goto-char (point-max)))
     ;; Make sure we're at the start of the line.
-    (unless (eolp)
+    (unless (bolp)
       (insert "\n"))
     ;; Narrow to the area we are to insert.
     (narrow-to-region (point) (point))