Correctly fill generated ChangeLog entries
This fixes both 'C-c C-v' in VC and 'magit-generate-changelog'. * lisp/vc/add-log.el (change-log-insert-entries): Correctly fill generated ChangeLog entries.
This commit is contained in:
parent
dfcfb9792c
commit
7fe90ca77d
1 changed files with 3 additions and 1 deletions
|
@ -324,7 +324,9 @@ CHANGELOGS is a list in the form returned by
|
|||
(insert ":\n")
|
||||
(insert " ")
|
||||
(cl-loop for def in defuns
|
||||
do (insert "(" def "):\n")))))
|
||||
do (progn
|
||||
(insert "(" def "):\n")
|
||||
(log-edit-fill-entry))))))
|
||||
|
||||
(defun change-log-find-file ()
|
||||
"Visit the file for the change under point."
|
||||
|
|
Loading…
Add table
Reference in a new issue