Mercurial > emacs
diff lisp/vc-svn.el @ 81306:114ec88248f4
(vc-svn-program): New var.
(vc-svn-command): Use it.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 11 Jun 2007 18:41:09 +0000 |
parents | a4103f62dec5 |
children | 0a2fb180b0a5 3619e7770f2e |
line wrap: on
line diff
--- a/lisp/vc-svn.el Mon Jun 11 17:48:04 2007 +0000 +++ b/lisp/vc-svn.el Mon Jun 11 18:41:09 2007 +0000 @@ -464,11 +464,16 @@ ;;; Internal functions ;;; +(defcustom vc-svn-program "svn" + "Name of the svn executable." + :type 'string + :group 'vc) + (defun vc-svn-command (buffer okstatus file &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 buffer okstatus "svn" file + (apply 'vc-do-command buffer okstatus vc-svn-program file (if (stringp vc-svn-global-switches) (cons vc-svn-global-switches flags) (append vc-svn-global-switches