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:
parent
ed2b0bdfe2
commit
894e142082
1 changed files with 3 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue