comparison lisp/mail/smtpmail.el @ 50931:0ef58c420b53

(smtpmail-send-queued-mail): Use point-at-bol instead of forward-line.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 09 May 2003 22:48:10 +0000
parents f560ffd14081
children 7f434a265bfa
comparison
equal deleted inserted replaced
50930:fa1c848a9779 50931:0ef58c420b53
402 (current-buffer))) 402 (current-buffer)))
403 (error "Sending failed; SMTP protocol error")) 403 (error "Sending failed; SMTP protocol error"))
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 (delete-region (point-at-bol) (progn (forward-line 1) (point)))) 407 (delete-region (point-at-bol) (point-at-bol 2)))
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)
411 411
412 (defun smtpmail-fqdn () 412 (defun smtpmail-fqdn ()