]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/vc/log-edit.el (log-edit-insert-changelog): Add field "Summary"
authorJuri Linkov <juri@linkov.net>
Sat, 13 Apr 2019 22:02:39 +0000 (01:02 +0300)
committerJuri Linkov <juri@linkov.net>
Sat, 13 Apr 2019 22:02:39 +0000 (01:02 +0300)
explicitly after adding field "Author".  (Bug#34972)

lisp/vc/log-edit.el

index 42710dd8dc91a81d679b0fea4a15e8d09443255e..ba5a1a3d57226a43927eba1c2839abcf70338dd8 100644 (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)