diff options
| author | Glenn Morris | 2008-12-03 07:36:23 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-12-03 07:36:23 +0000 |
| commit | f9528daad0e5ecf263ff7165b259d82be2f395b3 (patch) | |
| tree | 843295a88a6f6b887322460266287e351a8d6f97 | |
| parent | e98a0cab3fa886a18834d53d53f1807511d37630 (diff) | |
| download | emacs-f9528daad0e5ecf263ff7165b259d82be2f395b3.tar.gz emacs-f9528daad0e5ecf263ff7165b259d82be2f395b3.zip | |
(vc-bzr-diff-switches): Doc fix. Add t as option.
(vc-bzr-log-switches): Doc fix.
| -rw-r--r-- | lisp/vc-bzr.el | 8 |
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 @@ | |||
| 70 | :type 'string) | 70 | :type 'string) |
| 71 | 71 | ||
| 72 | (defcustom vc-bzr-diff-switches nil | 72 | (defcustom vc-bzr-diff-switches nil |
| 73 | "String/list of strings specifying extra switches for bzr diff under VC." | 73 | "String or list of strings specifying switches for bzr diff under VC. |
| 74 | :type '(choice (const :tag "None" nil) | 74 | If nil, use the value of `vc-diff-switches'. If t, use no switches." |
| 75 | :type '(choice (const :tag "Unspecified" nil) | ||
| 76 | (const :tag "None" t) | ||
| 75 | (string :tag "Argument String") | 77 | (string :tag "Argument String") |
| 76 | (repeat :tag "Argument List" :value ("") string)) | 78 | (repeat :tag "Argument List" :value ("") string)) |
| 77 | :group 'vc-bzr) | 79 | :group 'vc-bzr) |
| 78 | 80 | ||
| 79 | (defcustom vc-bzr-log-switches nil | 81 | (defcustom vc-bzr-log-switches nil |
| 80 | "String/list of strings specifying extra switches for `bzr log' under VC." | 82 | "String or list of strings specifying switches for bzr log under VC." |
| 81 | :type '(choice (const :tag "None" nil) | 83 | :type '(choice (const :tag "None" nil) |
| 82 | (string :tag "Argument String") | 84 | (string :tag "Argument String") |
| 83 | (repeat :tag "Argument List" :value ("") string)) | 85 | (repeat :tag "Argument List" :value ("") string)) |