]> code.delx.au - gnu-emacs/commitdiff
Don't declare vc-exec-after anymore
authorDmitry Gutov <dgutov@yandex.ru>
Tue, 20 Oct 2015 16:37:30 +0000 (19:37 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Tue, 20 Oct 2015 19:07:20 +0000 (22:07 +0300)
* lisp/vc/vc-svn.el:
* lisp/vc/vc-mtn.el:
* lisp/vc/vc-hg.el:
* lisp/vc/vc-cvs.el:
* lisp/vc/vc-git.el:
* lisp/vc/vc-bzr.el: Don't declare vc-exec-after anymore.  Its
usages have been replaced with vc-run-delayed.

lisp/obsolete/vc-arch.el
lisp/vc/vc-bzr.el
lisp/vc/vc-cvs.el
lisp/vc/vc-git.el
lisp/vc/vc-hg.el
lisp/vc/vc-mtn.el
lisp/vc/vc-svn.el

index e6540ce74d995e26987b3d5f434424b2eeb9a487..bdb69757d35259644b1c4b61ffa79a0ea2286745 100644 (file)
@@ -310,10 +310,6 @@ Only the value `maybe' can be trusted :-(."
                    'up-to-date
                  'edited)))))))))
 
-;; dir-status-files called from vc-dir, which loads vc,
-;; which loads vc-dispatcher.
-(declare-function vc-exec-after "vc-dispatcher" (code))
-
 (defun vc-arch-dir-status-files (dir _files callback)
   "Run `tla inventory' for DIR and pass results to CALLBACK.
 CALLBACK expects (ENTRIES &optional MORE-TO-COME); see
index 9b2711d81469d9d314617f66d8ad2cddefe55a70..40f251654f285a38c0b493f67c9a8f2c0ace11fe 100644 (file)
@@ -331,7 +331,6 @@ in the repository root directory of FILE."
   "Value of `compilation-error-regexp-alist' in *vc-bzr* buffers.")
 
 ;; To be called via vc-pull from vc.el, which requires vc-dispatcher.
-(declare-function vc-exec-after "vc-dispatcher" (code))
 (declare-function vc-set-async-update "vc-dispatcher" (process-buffer))
 (declare-function vc-compilation-mode "vc-dispatcher" (backend))
 
index 5f5807fb3c633915d0a156cd8ab89be341f36fcc..c0a199dc07810f38f7b4c6a5596f61f2815589da 100644 (file)
@@ -543,8 +543,6 @@ Will fail unless you have administrative privileges on the repo."
 ;;;
 
 (declare-function vc-rcs-print-log-cleanup "vc-rcs" ())
-;; Follows vc-cvs-command, which uses vc-do-command from vc-dispatcher.
-(declare-function vc-exec-after "vc-dispatcher" (code))
 
 (defun vc-cvs-print-log (files buffer &optional _shortlog _start-revision limit)
   "Print commit log associated with FILES into specified BUFFER.
index b5570323e03d904f11cc8882a6e75660b7100c4e..2a8cd568bf7d60cdeb01582f9f7f7eb1a86e2fe2 100644 (file)
@@ -461,8 +461,6 @@ or an empty string if none."
 
 ;; Follows vc-git-command (or vc-do-async-command), which uses vc-do-command
 ;; from vc-dispatcher.
-(declare-function vc-exec-after "vc-dispatcher" (code))
-;; Follows vc-exec-after.
 (declare-function vc-set-async-update "vc-dispatcher" (process-buffer))
 
 (defun vc-git-dir-status-goto-stage (stage files update-function)
index 49573986125bc0dabc5ba7f83fdece967b75b3be..c4d6092d1004e9a0b39374f05cfc026e1e1e023a 100644 (file)
@@ -620,8 +620,6 @@ REV is the revision to check out into WORKFILE."
 
 ;; Follows vc-hg-command (or vc-do-async-command), which uses vc-do-command
 ;; from vc-dispatcher.
-(declare-function vc-exec-after "vc-dispatcher" (code))
-;; Follows vc-exec-after.
 (declare-function vc-set-async-update "vc-dispatcher" (process-buffer))
 
 (defun vc-hg-dir-status-files (dir files update-function)
index b56a08f2a9ec8f31be8adbb6823590c39b874d6f..3197d6060615f897d9863ee8dc2275d03ce06691 100644 (file)
@@ -138,10 +138,6 @@ 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
index 4ef63a23db55eacb319e61f5c10a4c8830aaabda..2ec65a1ad07af37a444830cd6c1c3144fc66225b 100644 (file)
@@ -208,10 +208,6 @@ switches."
          (setq result (cons (list filename state) result)))))
     (funcall callback result)))
 
-;; dir-status-files called from vc-dir, which loads vc,
-;; which loads vc-dispatcher.
-(declare-function vc-exec-after "vc-dispatcher" (code))
-
 (autoload 'vc-expand-dirs "vc")
 
 (defun vc-svn-dir-status-files (_dir files callback)