1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-17 05:30:43 -08:00

* lisp/vc/log-edit.el (log-edit-insert-changelog): Add field "Summary"

explicitly after adding field "Author".  (Bug#34972)
This commit is contained in:
Juri Linkov 2019-04-14 01:02:39 +03:00
parent ed2b0bdfe2
commit 894e142082

View file

@ -754,7 +754,9 @@ regardless of user name or time."
(log-edit-insert-changelog-entries (log-edit-files)))))
(log-edit-set-common-indentation)
;; Add an Author: field if appropriate.
(when author (log-edit-add-field "Author" (car author)))
(when author
(log-edit-add-field "Author" (car author))
(log-edit-add-field "Summary" ""))
;; Add a Fixes: field if applicable.
(when (consp log-edit-rewrite-fixes)
(rfc822-goto-eoh)