mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
* lisp/vc/vc.el (vc-checkin): Don't assume vc-dir is loaded.
This commit is contained in:
parent
49420f7033
commit
1d2c3cb5bb
1 changed files with 2 additions and 1 deletions
|
|
@ -2230,7 +2230,8 @@ have changed; continue with old fileset?" (current-buffer))))
|
|||
(dolist (file files)
|
||||
(let ((file (expand-file-name file)))
|
||||
(vc-file-setprop file 'display-state "committing")
|
||||
(vc-dir-resynch-file file)
|
||||
(when (featurep 'vc-dir)
|
||||
(vc-dir-resynch-file file))
|
||||
(push file to-remove-props)))
|
||||
(vc-exec-after #'remove-props-done-msg nil proc))
|
||||
ret)
|
||||
|
|
|
|||
Loading…
Reference in a new issue