diff options
author | Glenn Morris <rgm@gnu.org> | 2008-12-03 07:38:45 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-12-03 07:38:45 +0000 |
commit | 633883e7caf6372a64b21d94df30e7e9cdae655b (patch) | |
tree | 401fb91e60ae15bebf9c06efab8f214591495e6f /lisp/vc-mtn.el | |
parent | e5dddf980abf0f8175134644b1643319219361d4 (diff) | |
download | emacs-633883e7caf6372a64b21d94df30e7e9cdae655b.tar.gz |
(vc-mtn-diff-switches): Doc fix.
Diffstat (limited to 'lisp/vc-mtn.el')
-rw-r--r-- | lisp/vc-mtn.el | 7 |
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 @@ (defcustom vc-mtn-diff-switches t "String or list of strings specifying switches for monotone diff under VC. -If nil, use the value of `vc-diff-switches'. -If you want to force an empty list of arguments, use t." +If nil, use the value of `vc-diff-switches'. If t, use no switches." :type '(choice (const :tag "Unspecified" nil) (const :tag "None" t) (string :tag "Argument String") - (repeat :tag "Argument List" - :value ("") - string)) + (repeat :tag "Argument List" :value ("") string)) :version "23.1" :group 'vc) |