# HG changeset patch # User Glenn Morris # Date 1228289813 0 # Node ID 7dffc98adf8f9e86fafebedd1a4f98f5a247f82c # Parent 6974583b6281a59163a61fbffe7723e9ae07ee33 (vc-git-diff-switches): Doc fix. diff -r 6974583b6281 -r 7dffc98adf8f lisp/vc-git.el --- a/lisp/vc-git.el Wed Dec 03 07:36:23 2008 +0000 +++ b/lisp/vc-git.el Wed Dec 03 07:36:53 2008 +0000 @@ -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)