aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-12-03 07:36:53 +0000
committerGlenn Morris2008-12-03 07:36:53 +0000
commitb6889b6553811ea362dd841a4692c236fd5dcbae (patch)
tree7f72647c4a098d8a6f0eaeadbf61712b5f871a82
parentf9528daad0e5ecf263ff7165b259d82be2f395b3 (diff)
downloademacs-b6889b6553811ea362dd841a4692c236fd5dcbae.tar.gz
emacs-b6889b6553811ea362dd841a4692c236fd5dcbae.zip
(vc-git-diff-switches): Doc fix.
-rw-r--r--lisp/vc-git.el9
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.
114If nil, use the value of `vc-diff-switches'. 114If nil, use the value of `vc-diff-switches'. If t, use no switches."
115If 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