diff options
| author | Juanma Barranquero | 2003-05-08 22:16:39 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2003-05-08 22:16:39 +0000 |
| commit | 9b60c729b415a16414fc13afb290d66f11817683 (patch) | |
| tree | 09142d4c5a7eadf07965ac99fe458811abb829d8 | |
| parent | 568ec71d65551c4a970112224c687896466b8768 (diff) | |
| download | emacs-9b60c729b415a16414fc13afb290d66f11817683.tar.gz emacs-9b60c729b415a16414fc13afb290d66f11817683.zip | |
(smtpmail-send-queued-mail): Don't use kill-line.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1b14eccf36c..3a42d83ef62 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-05-09 Jesper Harder <harder@ifa.au.dk> (tiny change) | ||
| 2 | |||
| 3 | * mail/smtpmail.el (smtpmail-send-queued-mail): Don't use kill-line. | ||
| 4 | |||
| 1 | 2003-05-08 Stefan Monnier <monnier@cs.yale.edu> | 5 | 2003-05-08 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 6 | ||
| 3 | * uniquify.el (uniquify-after-kill-buffer-p): Fix misleading docstring. | 7 | * uniquify.el (uniquify-after-kill-buffer-p): Fix misleading docstring. |
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 17f1f6d43c1..53070318294 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -404,7 +404,7 @@ This is relative to `smtpmail-queue-dir'.") | |||
| 404 | (error "Sending failed; no recipients"))) | 404 | (error "Sending failed; no recipients"))) |
| 405 | (delete-file file-msg) | 405 | (delete-file file-msg) |
| 406 | (delete-file (concat file-msg ".el")) | 406 | (delete-file (concat file-msg ".el")) |
| 407 | (kill-line 1)) | 407 | (delete-region (point-at-bol) (progn (forward-line 1) (point)))) |
| 408 | (write-region (point-min) (point-max) smtpmail-queue-index)))) | 408 | (write-region (point-min) (point-max) smtpmail-queue-index)))) |
| 409 | 409 | ||
| 410 | ;(defun smtpmail-via-smtp (host,port,sender,destination,smtpmail-text-buffer) | 410 | ;(defun smtpmail-via-smtp (host,port,sender,destination,smtpmail-text-buffer) |