Function: vc-svn-command
vc-svn-command is a byte-compiled function defined in vc-svn.el.gz.
Signature
(vc-svn-command BUFFER OKSTATUS FILE-OR-LIST &rest FLAGS)
Documentation
A wrapper around vc-do-command for use in vc-svn.el.
The difference to vc-do-command is that this function always invokes svn,
and that it passes vc-svn-global-switches to it before FLAGS.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
;;;
;;; Internal functions
;;;
(defun vc-svn-command (buffer okstatus file-or-list &rest flags)
"A wrapper around `vc-do-command' for use in vc-svn.el.
The difference to `vc-do-command' is that this function always invokes `svn',
and that it passes `vc-svn-global-switches' to it before FLAGS."
(apply #'vc-do-command (or buffer "*vc*") okstatus vc-svn-program file-or-list
(if (stringp vc-svn-global-switches)
(cons vc-svn-global-switches flags)
(append vc-svn-global-switches flags))))