diff options
| -rw-r--r-- | lisp/vc.el | 9 |
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. |
| 489 | There is also an option vc-BACKEND-diff-switches for each BACKEND that | 489 | When running diff under a given BACKEND, VC concatenates the values of |
| 490 | VC can handle." | 490 | `diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to |
| 491 | get the switches for that command. Thus, `vc-diff-switches' should | ||
| 492 | contain switches that are specific to version control, but not | ||
| 493 | specific 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" |