diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-05-02 07:47:18 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-05-02 07:47:18 +0000 |
commit | 6cdc3bc9f124b88bc791694c1d736d681fb823e0 (patch) | |
tree | ff1e0c24020703dbe1d4bafb8f2952394d58c61d /lisp/vc-hooks.el | |
parent | caf37b1f19190ce42797f1ea850cbce8b12b6299 (diff) | |
download | emacs-6cdc3bc9f124b88bc791694c1d736d681fb823e0.tar.gz |
More preparation for removing dired.
Diffstat (limited to 'lisp/vc-hooks.el')
-rw-r--r-- | lisp/vc-hooks.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 5b513c46c47..76fe6053f19 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -751,7 +751,7 @@ Before doing that, check if there are any old backups and get rid of them." (vc-call make-version-backups-p file) (vc-make-version-backup file))))) -(declare-function vc-dired-resynch-file "vc" (file)) +(declare-function vc-directory-resynch-file "vc" (file)) (defun vc-after-save () "Function to be called by `basic-save-buffer' (in files.el)." @@ -775,7 +775,7 @@ Before doing that, check if there are any old backups and get rid of them." (when (featurep 'vc) ;; If VC is not loaded, then there can't be ;; any VC Dired buffer to synchronize. - (vc-dired-resynch-file file))))) + (vc-directory-resynch-file file))))) (defvar vc-menu-entry '(menu-item "Version Control" vc-menu-map |