changeset 52033:9b5f3940a1ef

(vc-svn-diff-switches): Don't default to vc-diff-switches.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 23 Jul 2003 15:34:14 +0000
parents 853a35645cb8
children 81ee369ca4f9
files lisp/vc-svn.el
diffstat 1 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/vc-svn.el	Wed Jul 23 11:39:11 2003 +0000
+++ b/lisp/vc-svn.el	Wed Jul 23 15:34:14 2003 +0000
@@ -65,9 +65,13 @@
   :version "21.4"
   :group 'vc)
 
-(defcustom vc-svn-diff-switches nil
-  "*A string or list of strings specifying extra switches for svn diff under VC."
-    :type '(choice (const :tag "None" nil)
+(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'.
+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 ("")