changeset 100180:a5dc2e77b960

(vc-hg-diff-switches): Doc fix.
author Glenn Morris <rgm@gnu.org>
date Wed, 03 Dec 2008 07:37:39 +0000
parents 7dffc98adf8f
children 951286915059
files lisp/vc-hg.el
diffstat 1 files changed, 5 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/vc-hg.el	Wed Dec 03 07:36:53 2008 +0000
+++ b/lisp/vc-hg.el	Wed Dec 03 07:37:39 2008 +0000
@@ -120,23 +120,17 @@
   "Global switches to pass to any Hg command."
   :type '(choice (const :tag "None" nil)
          (string :tag "Argument String")
-         (repeat :tag "Argument List"
-             :value ("")
-             string))
+         (repeat :tag "Argument List" :value ("") string))
   :version "22.2"
   :group 'vc)
 
-(defcustom vc-hg-diff-switches
-  t                           ; Hg doesn't support common args like -u
-  "String or list of strings specifying extra switches for Hg diff under VC.
-If nil, use the value of `vc-diff-switches'.
-If you want to force an empty list of arguments, use t."
+(defcustom vc-hg-diff-switches t ; Hg doesn't support common args like -u
+  "String or list of strings specifying switches for Hg 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)