aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/vc-mtn.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/vc-mtn.el b/lisp/vc-mtn.el
index e4d7535ff6a..3e5c400bf41 100644
--- a/lisp/vc-mtn.el
+++ b/lisp/vc-mtn.el
@@ -35,14 +35,11 @@
35 35
36(defcustom vc-mtn-diff-switches t 36(defcustom vc-mtn-diff-switches t
37 "String or list of strings specifying switches for monotone diff under VC. 37 "String or list of strings specifying switches for monotone diff under VC.
38If nil, use the value of `vc-diff-switches'. 38If nil, use the value of `vc-diff-switches'. If t, use no switches."
39If you want to force an empty list of arguments, use t."
40 :type '(choice (const :tag "Unspecified" nil) 39 :type '(choice (const :tag "Unspecified" nil)
41 (const :tag "None" t) 40 (const :tag "None" t)
42 (string :tag "Argument String") 41 (string :tag "Argument String")
43 (repeat :tag "Argument List" 42 (repeat :tag "Argument List" :value ("") string))
44 :value ("")
45 string))
46 :version "23.1" 43 :version "23.1"
47 :group 'vc) 44 :group 'vc)
48 45