summaryrefslogtreecommitdiff
path: root/lisp/mail
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1999-04-26 04:33:56 +0000
committerKarl Heuer <kwzh@gnu.org>1999-04-26 04:33:56 +0000
commit81f5ed32addc80c35b4513c271755480e285c0d9 (patch)
tree3ac7003064fd6c4eb245d883a942f68e8cf6dd59 /lisp/mail
parent2990dcd48431cfb159dbc0e1b6f9738cd35866f3 (diff)
downloademacs-81f5ed32addc80c35b4513c271755480e285c0d9.tar.gz
(mail-sent-via): Use copy-marker not make-marker.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/sendmail.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index f677af3e34a..b75540ce7ed 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -1058,7 +1058,7 @@ See also the function `select-sendmail-coding-system'.")
(interactive)
(save-excursion
;; put a marker at the end of the header
- (let ((end (make-marker (mail-header-end)))
+ (let ((end (copy-marker (mail-header-end)))
(case-fold-search t)
to-line)
(goto-char (point-min))