(log-edit-insert-changelog-entries): Don't add newline after the last entry

* lisp/vc/log-edit.el (log-edit-insert-changelog-entries):
Don't add newline after the last entry.
This commit is contained in:
Dmitry Gutov 2015-04-10 02:26:58 +03:00
parent e597344849
commit 2957dd6859

View file

@ -992,6 +992,9 @@ Rename relative filenames in the ChangeLog entry as FILES."
(apply 'log-edit-changelog-insert-entries
(append (car log-entry) (cdr log-entry)))
(insert "\n"))
;; No newline after the last entry.
(when log-entries
(delete-char -1))
log-edit-author))
(defun log-edit-toggle-header (header value)