Function: vc-run-delayed
vc-run-delayed is a macro defined in vc-dispatcher.el.gz.
Signature
(vc-run-delayed &rest BODY)
Documentation
Execute BODY when the current buffer's process is done.
If the current buffer has no process, execute BODY immediately.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-dispatcher.el.gz
(defmacro vc-run-delayed (&rest body)
"Execute BODY when the current buffer's process is done.
If the current buffer has no process, execute BODY immediately."
(declare (indent 0) (debug (def-body)))
`(vc-exec-after (lambda () ,@body)))