diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/mail/sendmail.el | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f39727164b3..371665b5a57 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-01-13 Richard Stallman <rms@gnu.org> | 1 | 2013-01-13 Richard Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * mail/sendmail.el (mail-position-on-field): Add doc string. | ||
| 4 | |||
| 3 | * mail/rmailmm.el (rmail-insert-mime-forwarded-message): Get | 5 | * mail/rmailmm.el (rmail-insert-mime-forwarded-message): Get |
| 4 | current message boundaries and pass them to | 6 | current message boundaries and pass them to |
| 5 | message-forward-make-body-mime. Minor style changes. | 7 | message-forward-make-body-mime. Minor style changes. |
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index e86229a5cfb..e1dee3295f2 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -1493,6 +1493,9 @@ just append to the file, in Babyl format if necessary." | |||
| 1493 | (insert "\nMail-Followup-To: ")))) | 1493 | (insert "\nMail-Followup-To: ")))) |
| 1494 | 1494 | ||
| 1495 | (defun mail-position-on-field (field &optional soft) | 1495 | (defun mail-position-on-field (field &optional soft) |
| 1496 | "Move to the start of the contents of header field FIELD. | ||
| 1497 | If there is none, insert one, unless SOFT is non-nil. | ||
| 1498 | If there are multiple FIELD fields, this goes to the first." | ||
| 1496 | (let (end | 1499 | (let (end |
| 1497 | (case-fold-search t)) | 1500 | (case-fold-search t)) |
| 1498 | (setq end (mail-header-end)) | 1501 | (setq end (mail-header-end)) |