Variable: vc-svn-diff-switches
vc-svn-diff-switches is a customizable variable defined in
vc-svn.el.gz.
Value
t
Documentation
String or list of strings specifying extra switches for svn diff under VC.
If nil, use the value of vc-diff-switches (or diff-switches(var)/diff-switches(fun)),
together with "-x --diff-cmd="diff-command (since svn diff
does not support the default "-c" value of diff-switches(var)/diff-switches(fun)).
If you want to force an empty list of arguments, use t.
This variable was added, or its default value changed, in Emacs 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
(defcustom vc-svn-diff-switches
t ;`svn' doesn't support common args like -c or -b.
"String or list of strings specifying extra switches for svn diff under VC.
If nil, use the value of `vc-diff-switches' (or `diff-switches'),
together with \"-x --diff-cmd=\"`diff-command' (since `svn diff'
does not support the default \"-c\" value of `diff-switches').
If you want to force an empty list of arguments, use t."
:type '(choice (const :tag "Unspecified" nil)
(const :tag "None" t)
(string :tag "Argument String")
(repeat :tag "Argument List"
:value ("")
string))
:version "22.1")