vc-merge: Look for 'merge-file' instead of 'merge'
* lisp/vc/vc.el (vc-merge): Look for 'merge-file' in second clause (bug#50258).
This commit is contained in:
parent
78923c5f4e
commit
bc8141594d
1 changed files with 1 additions and 1 deletions
|
@ -2294,7 +2294,7 @@ changes from the current branch."
|
|||
((vc-find-backend-function backend 'merge-branch)
|
||||
(vc-call-backend backend 'merge-branch))
|
||||
;; Otherwise, do a per-file merge.
|
||||
((vc-find-backend-function backend 'merge)
|
||||
((vc-find-backend-function backend 'merge-file)
|
||||
(vc-buffer-sync)
|
||||
(dolist (file files)
|
||||
(let* ((state (vc-state file))
|
||||
|
|
Loading…
Add table
Reference in a new issue