(smtpmail-send-queued-mail): Use point-at-bol instead of forward-line.
This commit is contained in:
parent
1647ff5c46
commit
95754b9f0f
2 changed files with 10 additions and 1 deletions
|
|
@ -1,3 +1,12 @@
|
|||
2003-05-10 Stefan Monnier <monnier@cs.yale.edu>
|
||||
|
||||
* mail/smtpmail.el (smtpmail-send-queued-mail): Use point-at-bol
|
||||
instead of forward-line.
|
||||
|
||||
2003-05-10 Oliver Scholz <alkibiades@gmx.de>
|
||||
|
||||
* startup.el (fancy-splash-default-action): Fix docstring.
|
||||
|
||||
2003-05-09 Sam Steingold <sds@gnu.org>
|
||||
|
||||
* pcvs.el (cvs-mode-find-file): Fixed the last patch's logic.
|
||||
|
|
|
|||
|
|
@ -404,7 +404,7 @@ This is relative to `smtpmail-queue-dir'.")
|
|||
(error "Sending failed; no recipients")))
|
||||
(delete-file file-msg)
|
||||
(delete-file (concat file-msg ".el"))
|
||||
(delete-region (point-at-bol) (progn (forward-line 1) (point))))
|
||||
(delete-region (point-at-bol) (point-at-bol 2)))
|
||||
(write-region (point-min) (point-max) smtpmail-queue-index))))
|
||||
|
||||
;(defun smtpmail-via-smtp (host,port,sender,destination,smtpmail-text-buffer)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue