`eolp' with `bolp' for detecting the start of the line.
+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
(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 "$"))
(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))