aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-07-23 15:34:14 +0000
committerStefan Monnier2003-07-23 15:34:14 +0000
commit8462aca5ffe54a4c3bd6a18837ff10a26d84aa62 (patch)
treefbdf0411b7ad40e96823b613315c4c3570e7c3f5
parent39440204a7a31173914a185d3676e925ebf60887 (diff)
downloademacs-8462aca5ffe54a4c3bd6a18837ff10a26d84aa62.tar.gz
emacs-8462aca5ffe54a4c3bd6a18837ff10a26d84aa62.zip
(vc-svn-diff-switches): Don't default to vc-diff-switches.
-rw-r--r--lisp/vc-svn.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index 46d83685475..1d46c90d9c8 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -65,9 +65,13 @@ A string or list of strings passed to the checkin program by
65 :version "21.4" 65 :version "21.4"
66 :group 'vc) 66 :group 'vc)
67 67
68(defcustom vc-svn-diff-switches nil 68(defcustom vc-svn-diff-switches
69 "*A string or list of strings specifying extra switches for svn diff under VC." 69 t ;`svn' doesn't support common args like -c or -b.
70 :type '(choice (const :tag "None" nil) 70 "String or list of strings specifying extra switches for svn diff under VC.
71If nil, use the value of `vc-diff-switches'.
72If you want to force an empty list of arguments, use t."
73 :type '(choice (const :tag "Unspecified" nil)
74 (const :tag "None" t)
71 (string :tag "Argument String") 75 (string :tag "Argument String")
72 (repeat :tag "Argument List" 76 (repeat :tag "Argument List"
73 :value ("") 77 :value ("")