summaryrefslogtreecommitdiff
path: root/lisp/vc-bzr.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-12-03 07:36:23 +0000
committerGlenn Morris <rgm@gnu.org>2008-12-03 07:36:23 +0000
commitf9528daad0e5ecf263ff7165b259d82be2f395b3 (patch)
tree843295a88a6f6b887322460266287e351a8d6f97 /lisp/vc-bzr.el
parente98a0cab3fa886a18834d53d53f1807511d37630 (diff)
downloademacs-f9528daad0e5ecf263ff7165b259d82be2f395b3.tar.gz
emacs-f9528daad0e5ecf263ff7165b259d82be2f395b3.tar.bz2
emacs-f9528daad0e5ecf263ff7165b259d82be2f395b3.zip
(vc-bzr-diff-switches): Doc fix. Add t as option.
(vc-bzr-log-switches): Doc fix.
Diffstat (limited to 'lisp/vc-bzr.el')
-rw-r--r--lisp/vc-bzr.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el
index efa9fc9ef9e..4f83f83c076 100644
--- a/lisp/vc-bzr.el
+++ b/lisp/vc-bzr.el
@@ -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))