diff options
author | Miles Bader <miles@gnu.org> | 2007-06-16 22:33:42 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-06-16 22:33:42 +0000 |
commit | 262d5ce7c21d6c1136fd2b8df67736e41e8e8953 (patch) | |
tree | 853a5d30babd0abd585ccbe7f4e228bf43a42d5c /lisp/vc-svn.el | |
parent | 5534694247d2b5259325ff43af0624aa2f8abb3e (diff) | |
parent | af41f8a8d6660ad1fefad5bda69d1acb8e40b4d1 (diff) | |
download | emacs-262d5ce7c21d6c1136fd2b8df67736e41e8e8953.tar.gz emacs-262d5ce7c21d6c1136fd2b8df67736e41e8e8953.tar.bz2 emacs-262d5ce7c21d6c1136fd2b8df67736e41e8e8953.zip |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 793-802)
- Update from CVS
- Remove RCS keywords
- Merge from emacs--rel--22
* emacs--rel--22 (patch 42-50)
- Update from CVS
- Merge from gnus--rel--5.10
- Gnus ChangeLog tweaks
* gnus--rel--5.10 (patch 229-232)
- Merge from emacs--devo--0, emacs--rel--22
- ChangeLog tweak
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-23
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r-- | lisp/vc-svn.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 1538a2a1ab3..b109f48d91d 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -464,11 +464,16 @@ NAME is assumed to be a URL." ;;; 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 |