diff options
| -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)) |