vc-user-edit-command: Add trailing space to initial input
* lisp/vc/vc-dispatcher.el (vc-user-edit-command): Add trailing space to initial input to ease adding additional flags.
This commit is contained in:
parent
8abd2ee052
commit
45232485ae
1 changed files with 5 additions and 4 deletions
|
@ -328,10 +328,11 @@ Intended to be used as the value of `vc-filter-command-function'."
|
|||
(if file-or-list
|
||||
" (files list to be appended)"
|
||||
""))
|
||||
(combine-and-quote-strings
|
||||
(cons command (remq nil (if files-separator-p
|
||||
(butlast flags)
|
||||
flags))))))))
|
||||
(concat (combine-and-quote-strings
|
||||
(cons command (remq nil (if files-separator-p
|
||||
(butlast flags)
|
||||
flags))))
|
||||
" ")))))
|
||||
(list (car edited) file-or-list
|
||||
(nconc (cdr edited) (and files-separator-p '("--"))))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue