(vc-bzr-diff-switches): Doc fix. Add t as option.
authorGlenn Morris <rgm@gnu.org>
Wed, 3 Dec 2008 07:36:23 +0000 (07:36 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 3 Dec 2008 07:36:23 +0000 (07:36 +0000)
(vc-bzr-log-switches): Doc fix.

lisp/vc-bzr.el

index efa9fc9..4f83f83 100644 (file)
   :type 'string)
 
 (defcustom vc-bzr-diff-switches nil
-  "String/list of strings specifying extra switches for bzr diff under VC."
-  :type '(choice (const :tag "None" nil)
+  "String or list of strings specifying switches for bzr diff under VC.
+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))
   :group 'vc-bzr)
 
 (defcustom vc-bzr-log-switches nil
-  "String/list of strings specifying extra switches for `bzr log' under VC."
+  "String or list of strings specifying switches for bzr log under VC."
   :type '(choice (const :tag "None" nil)
                  (string :tag "Argument String")
                  (repeat :tag "Argument List" :value ("") string))