diff options
| -rw-r--r-- | lisp/vc-git.el | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el index 099c79a066f..efb59ac2516 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el | |||
| @@ -110,15 +110,12 @@ | |||
| 110 | (require 'grep)) | 110 | (require 'grep)) |
| 111 | 111 | ||
| 112 | (defcustom vc-git-diff-switches t | 112 | (defcustom vc-git-diff-switches t |
| 113 | "String or list of strings specifying extra switches for Git diff under VC. | 113 | "String or list of strings specifying switches for Git diff under VC. |
| 114 | If nil, use the value of `vc-diff-switches'. | 114 | If nil, use the value of `vc-diff-switches'. If t, use no switches." |
| 115 | If you want to force an empty list of arguments, use t." | ||
| 116 | :type '(choice (const :tag "Unspecified" nil) | 115 | :type '(choice (const :tag "Unspecified" nil) |
| 117 | (const :tag "None" t) | 116 | (const :tag "None" t) |
| 118 | (string :tag "Argument String") | 117 | (string :tag "Argument String") |
| 119 | (repeat :tag "Argument List" | 118 | (repeat :tag "Argument List" :value ("") string)) |
| 120 | :value ("") | ||
| 121 | string)) | ||
| 122 | :version "23.1" | 119 | :version "23.1" |
| 123 | :group 'vc) | 120 | :group 'vc) |
| 124 | 121 | ||