mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-19 19:37:58 +00:00
(message-generate-headers): Record insertion of optional headers as well.
Otherwise the check to prevent repeated insertion of optional headers is a no-op. By Andreas Seltenreich <seltenreich@gmx.de>.
This commit is contained in:
parent
489fe4c2ea
commit
731533fdb6
2 changed files with 7 additions and 0 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2010-04-22 Andreas Seltenreich <seltenreich@gmx.de>
|
||||
|
||||
* message.el (message-generate-headers): Record insertion of optional
|
||||
headers as well. Otherwise the check to prevent repeated insertion of
|
||||
optional headers is a no-op.
|
||||
|
||||
2010-04-17 Teodor Zlatanov <tzz@lifelogs.com>
|
||||
|
||||
* smime.el: Don't mention CVS.
|
||||
|
|
|
|||
|
|
@ -5905,6 +5905,7 @@ Headers already prepared in the buffer are not modified."
|
|||
(if formatter
|
||||
(funcall formatter header value)
|
||||
(insert header-string ": " value))
|
||||
(push header-string message-inserted-headers)
|
||||
(goto-char (message-fill-field))
|
||||
;; We check whether the value was ended by a
|
||||
;; newline. If not, we insert one.
|
||||
|
|
|
|||
Loading…
Reference in a new issue