aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndré Spiegel2001-10-22 12:13:29 +0000
committerAndré Spiegel2001-10-22 12:13:29 +0000
commitb453817c999999d0482dbfd684da8538e9a60d7b (patch)
tree23ad66321d4f86bbfa8e0132cbbae0358765aeef
parentda67faa90eed14db534a1cd81d0a16182a83fb9e (diff)
downloademacs-b453817c999999d0482dbfd684da8538e9a60d7b.tar.gz
emacs-b453817c999999d0482dbfd684da8538e9a60d7b.zip
(vc-diff-switches): Doc rewritten.
-rw-r--r--lisp/vc.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 729c9cc21a2..cb9639cccb1 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -6,7 +6,7 @@
6;; Maintainer: Andre Spiegel <spiegel@gnu.org> 6;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7;; Keywords: tools 7;; Keywords: tools
8 8
9;; $Id: vc.el,v 1.313 2001/10/21 23:31:45 spiegel Exp $ 9;; $Id: vc.el,v 1.314 2001/10/22 07:54:03 spiegel Exp $
10 10
11;; This file is part of GNU Emacs. 11;; This file is part of GNU Emacs.
12 12
@@ -486,8 +486,11 @@ These are passed to the checkin program by \\[vc-register]."
486 486
487(defcustom vc-diff-switches nil 487(defcustom vc-diff-switches nil
488 "*A string or list of strings specifying switches for diff under VC. 488 "*A string or list of strings specifying switches for diff under VC.
489There is also an option vc-BACKEND-diff-switches for each BACKEND that 489When running diff under a given BACKEND, VC concatenates the values of
490VC can handle." 490`diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to
491get the switches for that command. Thus, `vc-diff-switches' should
492contain switches that are specific to version control, but not
493specific to any particular backend."
491 :type '(choice (const :tag "None" nil) 494 :type '(choice (const :tag "None" nil)
492 (string :tag "Argument String") 495 (string :tag "Argument String")
493 (repeat :tag "Argument List" 496 (repeat :tag "Argument List"