1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-07 20:54:32 +00:00

(vc-git-diff-switches): Doc fix.

This commit is contained in:
Glenn Morris 2008-12-03 07:36:53 +00:00
parent f9528daad0
commit b6889b6553

View File

@ -110,15 +110,12 @@
(require 'grep))
(defcustom vc-git-diff-switches t
"String or list of strings specifying extra switches for Git diff under VC.
If nil, use the value of `vc-diff-switches'.
If you want to force an empty list of arguments, use t."
"String or list of strings specifying switches for Git 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))
(repeat :tag "Argument List" :value ("") string))
:version "23.1"
:group 'vc)