aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-12-03 07:38:45 +0000
committerGlenn Morris2008-12-03 07:38:45 +0000
commit633883e7caf6372a64b21d94df30e7e9cdae655b (patch)
tree401fb91e60ae15bebf9c06efab8f214591495e6f
parente5dddf980abf0f8175134644b1643319219361d4 (diff)
downloademacs-633883e7caf6372a64b21d94df30e7e9cdae655b.tar.gz
emacs-633883e7caf6372a64b21d94df30e7e9cdae655b.zip
(vc-mtn-diff-switches): Doc fix.
-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