Mercurial > emacs
changeset 100179:7dffc98adf8f
(vc-git-diff-switches): Doc fix.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 03 Dec 2008 07:36:53 +0000 |
parents | 6974583b6281 |
children | a5dc2e77b960 |
files | lisp/vc-git.el |
diffstat | 1 files changed, 3 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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)