Pass SVN commit message through log-edit-extract-headers
* lisp/vc/vc-svn.el (vc-svn-checkin): Pass COMMENT through log-edit-extract-headers (bug#18954).
This commit is contained in:
parent
fdc271fab0
commit
a590713728
1 changed files with 2 additions and 1 deletions
|
@ -313,7 +313,8 @@ to the SVN command."
|
|||
"SVN-specific version of `vc-backend-checkin'."
|
||||
(let ((status (apply
|
||||
'vc-svn-command nil 1 files "ci"
|
||||
(nconc (list "-m" comment) (vc-switches 'SVN 'checkin)))))
|
||||
(nconc (cons "-m" (log-edit-extract-headers comment))
|
||||
(vc-switches 'SVN 'checkin)))))
|
||||
(set-buffer "*vc*")
|
||||
(goto-char (point-min))
|
||||
(unless (equal status 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue