diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2015-10-28 02:43:14 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2015-10-28 02:43:14 +0200 |
commit | 9db11fa2d635935318364370f31821023c2501b9 (patch) | |
tree | 8da77b3571d361a0dade4db64a1aeb1bf9b17aa5 /lisp/vc/vc-mtn.el | |
parent | b1d39288e5845be744dcf8ac3c26631c1009dba1 (diff) | |
download | emacs-9db11fa2d635935318364370f31821023c2501b9.tar.gz emacs-9db11fa2d635935318364370f31821023c2501b9.tar.bz2 emacs-9db11fa2d635935318364370f31821023c2501b9.zip |
; Revert "Don't declare vc-exec-after anymore"
This reverts commit 5e4395544c184d9a8702cf05c7aee9329b0b9482.
(http://lists.gnu.org/archive/html/emacs-devel/2015-10/msg02009.html)
Diffstat (limited to 'lisp/vc/vc-mtn.el')
-rw-r--r-- | lisp/vc/vc-mtn.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/vc/vc-mtn.el b/lisp/vc/vc-mtn.el index 3197d606061..b56a08f2a9e 100644 --- a/lisp/vc/vc-mtn.el +++ b/lisp/vc/vc-mtn.el @@ -138,6 +138,10 @@ switches." ((match-end 2) (push (list (match-string 3) 'added) result)))) (funcall update-function result))) +;; dir-status-files called from vc-dir, which loads vc, +;; which loads vc-dispatcher. +(declare-function vc-exec-after "vc-dispatcher" (code)) + (defun vc-mtn-dir-status-files (dir _files update-function) (vc-mtn-command (current-buffer) 'async dir "status") (vc-run-delayed |