changeset 100178:6974583b6281

(vc-bzr-diff-switches): Doc fix. Add t as option. (vc-bzr-log-switches): Doc fix.
author Glenn Morris <rgm@gnu.org>
date Wed, 03 Dec 2008 07:36:23 +0000
parents 5a223111838e
children 7dffc98adf8f
files lisp/vc-bzr.el
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/vc-bzr.el	Wed Dec 03 07:35:14 2008 +0000
+++ b/lisp/vc-bzr.el	Wed Dec 03 07:36:23 2008 +0000
@@ -70,14 +70,16 @@
   :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))